Skip to content
Snippets Groups Projects
Commit c99f187d authored by Christopher Willis-Ford's avatar Christopher Willis-Ford
Browse files

Adjust NPM test scripts as discussed with Ray

parent b490934f
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,11 @@
"deploy": "touch build/.nojekyll && gh-pages -t -d build -m \"Build for $(git log --pretty=format:%H -n1)\"",
"i18n:msgs": "node ./scripts/generate-locale-messages.js",
"i18n:src": "babel src > tmp.js && rimraf tmp.js && ./scripts/build-i18n-source.js ./translations/messages/ ./translations/",
"lint": "eslint . --ext .js,.jsx",
"start": "npm run i18n:msgs && webpack-dev-server",
"unit-test": "jest test[\\\\/]unit",
"integration-test": "jest --runInBand test[\\\\/]integration",
"test": "npm run lint && npm run unit-test && npm run integration-test",
"test": "npm run test:lint && npm run build && npm run test:unit && npm run test:integration",
"test:integration": "jest --runInBand test[\\\\/]integration",
"test:lint": "eslint . --ext .js,.jsx",
"test:unit": "jest test[\\\\/]unit",
"watch": "webpack --progress --colors --watch"
},
"author": "Massachusetts Institute of Technology",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment