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
If you want to have two suites of tests running with independent commands in the terminal (e.g. npm run test-router and npm run test-logic), while also having them run together with npm test, you can use the structure below - note this also allows Travis to run both test suites whenever it's doing its CI.
Update on the above - specifying your test script like this is neater, and will work the same, provided you are consistent with your file naming (it will run all files in the /test folder that end in .test.js):
If you want to have two suites of tests running with independent commands in the terminal (e.g.
npm run test-router
andnpm run test-logic
), while also having them run together withnpm test
, you can use the structure below - note this also allows Travis to run both test suites whenever it's doing its CI.The text was updated successfully, but these errors were encountered: