github.com/criteo/command-launcher@v0.0.0-20230407142452-fb616f546e98/test/README.md (about) 1 # Integration Test 2 3 To run all the integration test simply run the script: `integration.sh` 4 5 ```bash 6 cd command-launcher 7 ./test/interation.sh 8 ``` 9 10 To run particular integration tests, pass the integration test file name (without .sh) in the `integration` folder as the arguments. 11 12 For example, the following command runs the tests in: 13 - test/integration/test-basic.sh 14 - test/integration/test-exit-code.sh 15 16 ```bash 17 cd command-launcher 18 ./test/interation.sh test-basic test-exit-code 19 ``` 20 21 Copy the test-template.sh to create a new test suite