Fix(package): Bad copy paste in test script

This commit is contained in:
Berkeley Martinez
2016-07-13 13:37:10 -07:00
parent 57b6debb44
commit ff64349e9a

View File

@ -19,10 +19,10 @@
"lint-utils": "jsonlint -q server/utils/*.json", "lint-utils": "jsonlint -q server/utils/*.json",
"lint-js": "eslint --ext=.js,.jsx server/ common/ config/ client/", "lint-js": "eslint --ext=.js,.jsx server/ common/ config/ client/",
"lint-json": "npm run lint-server && npm run lint-challenges && npm run lint-resources && npm run lint-utils", "lint-json": "npm run lint-server && npm run lint-challenges && npm run lint-resources && npm run lint-utils",
"test-challenges": "npm run test-challenges",
"pretest": "npm run lint", "pretest": "npm run lint",
"snyk-protect": "snyk protect", "snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect", "prepublish": "npm run snyk-protect",
"test-challenges": "babel-node seed/test-challenges.js | tap-spec",
"test-js": "tape -r babel-register 'common/**/*.test.js'", "test-js": "tape -r babel-register 'common/**/*.test.js'",
"test": "npm run test-js && npm run test-challenges", "test": "npm run test-js && npm run test-challenges",
"cover": "babel-node ./node_modules/.bin/babel-istanbul cover tape common/**/*.test.js", "cover": "babel-node ./node_modules/.bin/babel-istanbul cover tape common/**/*.test.js",