From ff64349e9a346a74e5f555d8fc0c9a14046a196f Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Wed, 13 Jul 2016 13:37:10 -0700 Subject: [PATCH] Fix(package): Bad copy paste in test script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e7456777f6..cddad94f9a 100644 --- a/package.json +++ b/package.json @@ -19,10 +19,10 @@ "lint-utils": "jsonlint -q server/utils/*.json", "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", - "test-challenges": "npm run test-challenges", "pretest": "npm run lint", "snyk-protect": "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": "npm run test-js && npm run test-challenges", "cover": "babel-node ./node_modules/.bin/babel-istanbul cover tape common/**/*.test.js",