From f247ed8741b8aa1f2d783639dc121b588c67c1b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6nnemann?= Date: Thu, 9 Jul 2015 15:33:59 +0200 Subject: [PATCH] chore(package): remove integration tests from default test command --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 39bd963e..24bb2624 100644 --- a/package.json +++ b/package.json @@ -58,11 +58,12 @@ }, "scripts": { "build": "rimraf dist && mkdirp dist && babel src --out-dir dist", - "build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test", "coverage": "nyc report", "coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info", - "pretest:unit": "npm run build && npm run build:tests", - "test": "npm run test:style && npm run test:unit && npm run test:integration", + "pretest:integration": "npm run build && npm run test:build", + "pretest:unit": "npm run build && npm run test:build", + "test": "npm run test:style && npm run test:unit", + "test:build": "rimraf .test && mkdirp .test && babel test --out-dir .test", "test:integration": "tap --no-cov .test/scenarios/*.js", "test:style": "standard", "test:unit": "nyc tap --no-cov .test/specs/*.js"