npm run test is now a single-run

We're consolidating on using `npm run test` in the gate, which
requires single-run karma captures for the test.

Change-Id: Ibd16775609fbfe8f60a14672a27fb44e84fb63b9
This commit is contained in:
Michael Krotscheck 2015-06-05 08:28:51 -07:00
parent 94251d05c9
commit 8645c29155

View File

@ -22,7 +22,7 @@
"prestart": "npm install", "prestart": "npm install",
"start": "http-server ./refstack-ui/app -a 0.0.0.0 -p 8080", "start": "http-server ./refstack-ui/app -a 0.0.0.0 -p 8080",
"pretest": "npm install", "pretest": "npm install",
"test": "karma start ./refstack-ui/tests/karma.conf.js", "test": "karma start ./refstack-ui/tests/karma.conf.js --single-run",
"test-single-run": "karma start ./refstack-ui/tests/karma.conf.js --single-run", "test-single-run": "karma start ./refstack-ui/tests/karma.conf.js --single-run",
"lint": "eslint -c ./.eslintrc --no-color ./refstack-ui" "lint": "eslint -c ./.eslintrc --no-color ./refstack-ui"
} }