-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
testee does not exit if using a config #198
Comments
This happens when The fix should be done on
Running the tests after killing all the running background instances closes the running instance. |
hah. so this prompted me to look at more chrome command line switches. "Indicates that the browser is in "browse without sign-in" (Guest session) mode. Should completely disable extensions, sync and bookmarks. " from https://peter.sh/experiments/chromium-command-line-switches/ |
Sadly, this stopped working. I have no idea what changes but Note this happens for Firefox as well. The only way I can have the tests run and exit properly is by not passing in any arguments. Then it work every time. |
@tracer99 you can add "browsers": [
{
"clean": true,
"browser": "chrome",
"args": [
"--headless"
]
}
] |
On all of our projects that are now on CanJS5/DoneJS3 testee no longer exits on completion of tests.
I've setup a bone stock donejs3 app with the only modification being the use of a config file for tests. The single tests completes successfully but testee does not exit.
https://github.com/tracer99/testee-exit
Platforms tested:
NodeJS 8 through 12
Debian Stable & old-stable
WSL & WSL2 (Debian Stable)
OSX
Note: The tests for testee itself exhibit this exact issue.
The text was updated successfully, but these errors were encountered: