Skip to content

Commit 79e0ed8

Browse files
authored
Don't bail early when running all tests (#707)
Co-authored-by: Frédéric Collonval <[email protected]>
1 parent 6b92c7e commit 79e0ed8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
"prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
3232
"publish": "npm run clean && npm run build:dist && node scripts/tag-versions.js && lerna publish --yes -m \"Publish\" from-package",
3333
"remove:dependency": "remove-dependency",
34-
"test": "lerna run test --concurrency 1 --scope \"@lumino/!(example-)*\"",
35-
"test:chromium": "lerna run test:chromium --concurrency 1",
36-
"test:examples": "lerna run test --scope \"@lumino/example-*\"",
37-
"test:firefox": "lerna run test:firefox --concurrency 1",
38-
"test:webkit": "lerna run test:webkit --concurrency 1",
34+
"test": "lerna run test --concurrency 1 --no-bail --scope \"@lumino/!(example-)*\"",
35+
"test:chromium": "lerna run test:chromium --no-bail --concurrency 1",
36+
"test:examples": "lerna run test --no-bail --scope \"@lumino/example-*\"",
37+
"test:firefox": "lerna run test:firefox --no-bail --concurrency 1",
38+
"test:webkit": "lerna run test:webkit --no-bail --concurrency 1",
3939
"update:dependency": "update-dependency --lerna",
4040
"update:versions": "lerna version --no-push --no-git-tag-version",
4141
"prepare": "husky install"

0 commit comments

Comments
 (0)