From 971ef7d8f906a9002ee90ec8505a32a2486c8240 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Tue, 10 Jan 2017 21:36:17 -0400 Subject: [PATCH] chore: make use of the "spec" mocha reporter (#1013) The "min" mocha reporter clears the screen after each run, causing any error/warning from the renderer process tests to be visually overwritten by the main process tests. Therefore, we now make use of the "spec" mocha reporter. Signed-off-by: Juan Cruz Viotti --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 86fda758..1a5a461f 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "url": "git@github.com:resin-io/etcher.git" }, "scripts": { - "test": "npm run lint && electron-mocha --recursive --renderer tests/gui -R min && electron-mocha --recursive tests/cli tests/shared -R min", + "test": "npm run lint && electron-mocha --recursive --renderer tests/gui -R spec && electron-mocha --recursive tests/cli tests/shared -R spec", "sass": "node-sass ./lib/gui/scss/main.scss > ./lib/gui/css/main.css", "jslint": "eslint lib tests scripts bin versionist.conf.js", "scsslint": "scss-lint lib/gui/scss",