From 29c53aa992e5369b7eee4cb411e41244134cd9ad Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Mon, 6 Jun 2016 00:38:17 +0900 Subject: [PATCH] Fix test command --- circle.yml | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index 04e77398..641d3863 100644 --- a/circle.yml +++ b/circle.yml @@ -31,9 +31,6 @@ dependencies: - cp release/*.deb $CIRCLE_ARTIFACTS/ test: - override: - - node_modules/.bin/mocha --reporter mocha-circleci-reporter - - node_modules/.bin/gulp prettify:verify post: - mv test-results.xml $CIRCLE_TEST_REPORTS/ diff --git a/package.json b/package.json index 62c85629..c15879d1 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "start": "electron dist", "watch": "gulp watch", "serve": "gulp watch", - "test": "gulp build && mocha --recursive test/specs && gulp prettify:verify", + "test": "gulp build && mocha --reporter mocha-circleci-reporter --recursive test/specs && gulp prettify:verify", "package": "gulp package", "package:windows": "gulp package:windows", "package:osx": "gulp package:osx",