From 5a267d7f86d5986cbcd15dbccb35c83fda4e468b Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 11 Apr 2018 13:12:42 -0400 Subject: [PATCH] Adding test commands to package.json --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3859ee17..ef701ff6 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,9 @@ "build:es5": "babel src -d dist/es5 --config-file=./.babelrc-es5", "build": "npm run build:clean && npm run build:es6 && npm run build:es5", "lint": "node_modules/eslint/bin/eslint.js ./src ./tests", - "test:infrastructure": "jest tests/services/**/*.js", - "test:services": "node_modules/tape/bin/tape tests/services/**/*.js | tap-spec", + "test:infrastructure": "jest tests/infrastructure/**/*.js", + "test:services": "jest tests/services/**/*.js", + "test": "jest && codecov" "test:watch": "GITLAB_URL=http://localhost:8080 API_TOKEN=ysccjxQtMCqz_wBfJEy2 jest --watch", "prepublishOnly": "npm run build" },