-
Notifications
You must be signed in to change notification settings - Fork 674
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
0.22.1-alpha.2 broke testcafe-live #2920
Comments
I was able to reproduce the issue only in two cases.
|
It seems to be related to the number of tests:
import { Selector } from 'testcafe';
fixture`Demo`.page('https://joinmastodon.org');
test.only('has get started button', async test => {
await test.expect(Selector('a').withText('Get started').visible).ok();
}); macOS version: 10.13.0 |
Thank you for providing this information. My attempts to replicate it, however, were unsuccessful. I can confirm that it works really slowly with more than 150 files, but it still does not fail. |
I can't replicate it anymore 😕 (tested with exactly the same versions). Will close this now, thank you for taking the time to investigate! |
I'm getting this issue too on {
"scripts": {
"test:live": "testcafe-live chrome ./tests/functional/**/*.js"
},
"devDependencies": {
"testcafe": "^0.23.2",
"testcafe-live": "^0.1.4"
}
} The tests run as expected, then this message appears :
then when overwriting a file
but the browser does not react and no more log is outputted. Nothing happens. Pressing ctrl+r shows once and ctrl+s repeatedly :
ctrl+c stops correctly. how can I help investigating ? |
Hi @pciavald Thank you for the detailed description. I've reproduced the problem. |
It will be resolved in the context of issue #3215 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs or feature requests. For TestCafe API, usage and configuration inquiries, we recommend asking them on StackOverflow. |
Are you requesting a feature or reporting a bug?
Bug.
What is the current behavior?
Reloading a test doesn't work. Changes are picked up but the test doesn't restart (it gets stuck at
Test run is starting...
).What is the expected behavior?
Reloading a test in
testcafe-live
works.How would you reproduce the current behavior (if this is a bug)?
Run a test with
testcafe-live
and pressCtrl-R
when it finished.Specify your
macOS
0.22.1-alpha.2
v8.12.0
The bug is not present in
0.22.1-alpha.1
.I'm reporting it here since the regression happened in
testcafe
.The text was updated successfully, but these errors were encountered: