chore(build) setting max workers in core spec and e2e tests to 2 (#19805)

This commit is contained in:
Ely Lucas
2019-10-30 16:47:49 -06:00
committed by GitHub
parent f2d18a2346
commit 7e6e81db55

View File

@ -80,9 +80,9 @@
"prerender.e2e": "node scripts/testing/prerender.js", "prerender.e2e": "node scripts/testing/prerender.js",
"start": "npm run build.css && stencil build --dev --watch --serve", "start": "npm run build.css && stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e --max-workers=2", "test": "stencil test --spec --e2e --max-workers=2",
"test.spec": "stencil test --spec", "test.spec": "stencil test --spec --max-workers=2",
"test.spec.debug": "npx --node-arg=\"--inspect-brk\" stencil test --spec", "test.spec.debug": "npx --node-arg=\"--inspect-brk\" stencil test --spec",
"test.e2e": "stencil test --e2e", "test.e2e": "stencil test --e2e --max-workers=2",
"test.screenshot": "stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/dev.js", "test.screenshot": "stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/dev.js",
"test.screenshot.ci": "stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci", "test.screenshot.ci": "stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci",
"test.watch": "jest --watch --no-cache", "test.watch": "jest --watch --no-cache",