aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--circle.yml4
-rw-r--r--package.json1
2 files changed, 2 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml
index efeb8ba57..2ea60bb9d 100644
--- a/circle.yml
+++ b/circle.yml
@@ -7,6 +7,4 @@ dependencies:
- "npm i -g mocha"
test:
override:
- - "npm run lint"
- - "npm run test-coverage"
- - "npm run test-integration" \ No newline at end of file
+ - "npm run ci" \ No newline at end of file
diff --git a/package.json b/package.json
index fe5466b9e..6d5227356 100644
--- a/package.json
+++ b/package.json
@@ -14,6 +14,7 @@
"single-test": "METAMASK_ENV=test mocha --require test/helper.js",
"test-integration": "npm run buildMock && npm run buildCiUnits && testem ci -P 2",
"test-coverage": "nyc npm run test-unit && nyc report --reporter=text-lcov | coveralls",
+ "ci": "npm run lint && npm run test-coverage && npm run test-integration",
"lint": "gulp lint",
"buildCiUnits": "node test/integration/index.js",
"watch": "mocha watch --recursive \"test/unit/**/*.js\"",