From af462cfb94cc7c0d887e86f21dbedeb63391af0a Mon Sep 17 00:00:00 2001 From: popovkov57 Date: Thu, 3 Nov 2016 22:37:28 +0100 Subject: [PATCH] chore(build): Add test:single for travis We don't want travis to wait the test --- .travis.yml | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e985c21..0313387 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ before_install: before_script: - npm prune script: - - npm run test + - npm run test:single after_success: - npm run semantic-release branches: diff --git a/package.json b/package.json index 68c1492..2934948 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "src/index.js", "scripts": { "commit": "git-cz", - "test": "mocha src/index.test.js -w", + "test:": "mocha src/index.test.js -w", + "test:single": "mocha src/index.test.js", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "repository": {