-
Notifications
You must be signed in to change notification settings - Fork 207
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
upgrade to Ava 4.3 #5793
upgrade to Ava 4.3 #5793
Conversation
945f93e
to
63a5077
Compare
ffcb4c9
to
05168be
Compare
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.
If all the tests are still passing, this sounds good to me.
@@ -77,7 +77,8 @@ | |||
"files": [ | |||
"test/**/test-*.js" | |||
], | |||
"timeout": "20m" | |||
"timeout": "20m", | |||
"workerThreads": false |
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.
After this lands, I'd be curious to remove this and see if it affects anything. If "workerThreads" share a JS heap, then we'll probably need to keep it disabled. But maybe they only share a unix process memoryspace, and still have separate instances of the V8 engine (and thus separate JS heaps, so their GC doesn't affect each other), in which case we could use them.
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.
Yeah I would like to remove this config wherever possible. In my testing these packages failed without this, but maybe we can solve those cases.
closes: #4895
supplants: #5201
Description
Upgrade Ava to v4 for the reasons in #4895 and to perhaps help debug #5575 .
Security Considerations
--
Documentation Considerations
Ava version will now match the docs on the Ava repo.
Testing Considerations
A few repo integration tests are breaking due to conflicting versions. Only non-required ones are left and I'll burn those down soon.