You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running codeceptjs with normal end if tests failed.
I dont need the tests reports.
I'm fine if the process just shutdown normally so the test server can handle the return value of the test script.
What do you get instead?
Codeceptjs runs all tests and printing an end result with successful/failed tests.
But the process doesnt stop. I have to manually shutdown the process
If all tests passed codeceptjs process exit normally.
If a test failed the codeceptjs process just prints the error log and waits for the user to end the process.
Cant use on CI Script because the server must kill the process.
FAIL | 55 passed, 14 failed // 22m
Details
package.json
{
"name": "robotinterface",
"version": "2.1.0",
"author": "xxx",
"scripts": {
"test:e2e:selenium": "npm run build-version && codeceptjs run --config test/codecept.conf.chromedriver.js",
}
}
What are you trying to achieve?
Running codeceptjs with normal end if tests failed.
I dont need the tests reports.
I'm fine if the process just shutdown normally so the test server can handle the return value of the test script.
What do you get instead?
Codeceptjs runs all tests and printing an end result with successful/failed tests.
But the process doesnt stop. I have to manually shutdown the process
If all tests passed codeceptjs process exit normally.
If a test failed the codeceptjs process just prints the error log and waits for the user to end the process.
Cant use on CI Script because the server must kill the process.
FAIL | 55 passed, 14 failed // 22m
Details
package.json
{ "name": "robotinterface", "version": "2.1.0", "author": "xxx", "scripts": { "test:e2e:selenium": "npm run build-version && codeceptjs run --config test/codecept.conf.chromedriver.js", } }Thank you :)