-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Re-enable error recovery test #3396
Conversation
|
@@ -71,7 +71,7 @@ | |||
"dev": "astro-scripts dev \"src/**/*.ts\"", | |||
"postbuild": "astro-scripts copy \"src/**/*.astro\"", | |||
"benchmark": "node test/benchmark/dev.bench.js && node test/benchmark/build.bench.js", | |||
"test": "mocha --exit --timeout 20000 --ignore **/lit-element.test.js && mocha --timeout 20000 **/lit-element.test.js", | |||
"test": "mocha --exit --timeout 20000 --ignore **/lit-element.test.js --ignore **/errors.test.js && mocha --timeout 20000 **/lit-element.test.js && mocha --timeout 20000 **/errors.test.js", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved this test to run on its own so it's not competing with resources of other tests running since it is testing server HMR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works for me! Would love to see this gnarly script cleaned up but definitely not blocking.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! Thanks
* Re-enable error recovery test * Doing some debugging * Remove extra debugging * longer wait * make it wait even longer just to check * Wait a very long time * await the change, and then a little bit * Give a longer timeout for the error recovery test * OK, make it *very* long * Run error tests separately * Get rid of wait
Changes