aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-11-25 09:29:16 +0200
committerGitHub <[email protected]>2020-11-25 09:29:16 +0200
commit81ac002a02430869035e68a35aa722cf69cbb885 (patch)
tree5db7cb2609eb5fe6e26081caa07109231b94e6b4
parentc348ad4a941cf309de9073d5db02814453469369 (diff)
downloadbootstrap-81ac002a02430869035e68a35aa722cf69cbb885.tar.xz
bootstrap-81ac002a02430869035e68a35aa722cf69cbb885.zip
npm scripts: run integration tests in parallel (#32232)
-rw-r--r--package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index 7ef514d1c..b4545406c 100644
--- a/package.json
+++ b/package.json
@@ -40,10 +40,11 @@
"js-minify-standalone": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
"js-minify-standalone-esm": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output dist/js/bootstrap.esm.min.js dist/js/bootstrap.esm.js",
"js-minify-bundle": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
- "js-test": "npm-run-all --parallel js-test-karma js-test-jquery js-test-integration",
+ "js-test": "npm-run-all --parallel js-test-karma js-test-jquery js-test-integration-*",
"js-debug": "cross-env DEBUG=true npm run js-test-karma",
"js-test-karma": "karma start js/tests/karma.conf.js",
- "js-test-integration": "rollup --config js/tests/integration/rollup.bundle.js && rollup --config js/tests/integration/rollup.bundle-modularity.js",
+ "js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
+ "js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
"js-test-cloud": "cross-env BROWSER=true npm run js-test-karma",
"js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
"lint": "npm-run-all --parallel js-lint css-lint lockfile-lint",