Add stubs for the integration tests

They are running each time machine is provisioned.
This commit is contained in:
Aleskey Zalesov 2018-03-13 14:24:11 +03:00
parent 096dd933f4
commit a18e5b3620
6 changed files with 19 additions and 0 deletions

4
Vagrantfile vendored
View File

@ -28,6 +28,10 @@ Vagrant.configure("2") do |config|
"bootnode" => ["bootnode"]
}
end
node.vm.provision :shell do |shell|
shell.path = "./tests/#{machine}.sh"
end
end
end

3
tests/bootnode.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is a stub for bootnode integration tests"

3
tests/explorer.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is a stub for explorer integration tests"

3
tests/moc.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is a stub for moc integration tests"

3
tests/netstat.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is a stub for netstat integration tests"

3
tests/validator.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "This is a stub for validator integration tests"