You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
Both nyc and ava are loading babel-core/register. In Node 4, npm does not dedupe by default, so nyc and ava may be resolving different instances of babel, so the hook may indeed be getting installed twice.
If it works without coverage, then it should just be a matter of removing —require babel-core/register from your npm script.
So there is 2 solutions here :
Don't run coverage on node 4
Remove --require and --all flags. (but we all know why do we add those flags in the first place)
https://travis-ci.org/MoOx/statinamic/jobs/113613499#L334
Update:
So there is 2 solutions here :
--require
and--all
flags. (but we all know why do we add those flags in the first place)@MoOx I wanna know your opinion about this.
The text was updated successfully, but these errors were encountered: