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
Hello. Currently I'm running tests with using this npm scripts:
"ava": "npm run ava:serial && npm run ava:parallel",
"ava:serial": "NODE_ENV=test ava -vs test/*.test.serial.js",
"ava:parallel": "NODE_ENV=test ava -v test/*.test.js",
Some tests I can run parallel and some test I can't. What about parsing serial string in file name and run them serially? It would be great, because my approach is not too fast.