Skip to content
Snippets Groups Projects
Commit 9f594fa2 authored by Brady James Garvin's avatar Brady James Garvin
Browse files

Corrected problem-specific npm test scripts.

parent 7424d49b
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@
"scripts": {
"lint:js": "eslint --max-warnings 0 ./src",
"lint": "run-s --continue-on-error lint:**",
"test-once:scheduleShifts": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage -t 'scheduleShifts'",
"test-once:inferGoals": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage -t 'inferGoals'",
"test-once": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll --coverage"
},
......
......@@ -10,10 +10,8 @@
"postinstall": "run-s postinstall:**",
"lint:app": "cd homework-3 && npm run lint",
"lint": "run-s --continue-on-error lint:**",
"test-once:closestPair": "cd homework-3 && npm run test-once:closestPair",
"test-once:sumToN": "cd homework-3 && npm run test-once:sumToN",
"test-once:intervals": "cd homework-3 && npm run test-once:intervals",
"test-once:trains": "cd homework-3 && npm run test-once:trains",
"test-once:scheduleShifts": "cd homework-3 && npm run test-once:scheduleShifts",
"test-once:inferGoals": "cd homework-3 && npm run test-once:inferGoals",
"test-once": "cd homework-3 && npm run test-once",
"test": "run-s test-once",
"start": "cd homework-3 && npm run start",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment