-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[JavaScript] Migrate from jest to jasmine #3501
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
Conversation
I'm not really qualified to review this change. @ericvergnaud how does this look? |
|
The versions should be forced by the package-lock.json, which ensures its reproducible. It also looks like
It looks like either jest or jasmine will work the same in this regard.
It looks like I misinterpreted the original documentation I saw, they said I think the main argument for |
Not sure I follow your reasoning ... package-lock.json is generated from package.json, so if one needs a security update on a dependency, they still need to update package.json (which is how the current one got a bit bloated) |
I do tons of react stuff, for which jest is better suited, so they say... |
Fine with me. Switching back to |
I think |
Sounds like we're safe to merge? |
Done |
Migrate from
jest
tojasmine
, resulting in a significant drop in dependencies including droppingyarn
which was unnecessary. AFAIKjest
is built onjasmine
, so with this change we are just cutting out the middle man.