From 2bdafb3b04856f27b31e259dd501d6e1f6d20a83 Mon Sep 17 00:00:00 2001 From: texodus Date: Sun, 22 Jul 2018 22:23:42 -0400 Subject: [PATCH] Run tests in parallel --- packages/perspective-viewer-highcharts/package.json | 2 +- packages/perspective-viewer-hypergrid/package.json | 2 +- packages/perspective-viewer/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/perspective-viewer-highcharts/package.json b/packages/perspective-viewer-highcharts/package.json index 97d02c0a42..2a4758213d 100644 --- a/packages/perspective-viewer-highcharts/package.json +++ b/packages/perspective-viewer-highcharts/package.json @@ -15,7 +15,7 @@ "build": "npm run highcharts", "build_test": "cp test/html/* build && webpack --config test/config/highcharts.config.js", "watch_test": "cp test/html* build && webpack --config --watch test/config/highcharts.config.js", - "test": "jest --silent --runInBand 2>&1", + "test": "jest --silent 2>&1", "clean": "find build -mindepth 1 -delete", "clean:screenshots": "find screenshots/ -name *.diff.png -o -name *.failed.png -mindepth 1 -delete" }, diff --git a/packages/perspective-viewer-hypergrid/package.json b/packages/perspective-viewer-hypergrid/package.json index 28ced77c63..4f19625de0 100644 --- a/packages/perspective-viewer-hypergrid/package.json +++ b/packages/perspective-viewer-hypergrid/package.json @@ -14,7 +14,7 @@ "hypergrid": "webpack --config src/config/hypergrid.plugin.config.js", "build": "npm run hypergrid", "build_test": "cp test/html/* build && webpack --config test/config/hypergrid.config.js", - "test": "jest --silent --runInBand 2>&1", + "test": "jest --silent 2>&1", "clean": "find build -mindepth 1 -delete", "clean:screenshots": "find screenshots/ -name *.diff.png -o -name *.failed.png -mindepth 1 -delete" }, diff --git a/packages/perspective-viewer/package.json b/packages/perspective-viewer/package.json index 39c153493e..ff16ab018a 100644 --- a/packages/perspective-viewer/package.json +++ b/packages/perspective-viewer/package.json @@ -12,7 +12,7 @@ "view": "webpack --config src/config/view.config.js", "build": "npm run view && npm run themes", "build_test": "cp test/html/* build && cp test/csv/* build && cp test/css/* build && webpack --config test/config/view.config.js", - "test": "jest --silent --runInBand 2>&1", + "test": "jest --silent 2>&1", "clean": "find build -mindepth 1 -delete", "clean:screenshots": "find screenshots/ -name *.diff.png -o -name *.failed.png -mindepth 1 -delete", "docs": "documentation build src/js/view.js -f md --shallow > README.md"