From 1576c65327edbe192ab6be0a7e907091d1227b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Thu, 30 May 2024 08:56:08 +0200 Subject: [PATCH] Don't bail early when running all tests --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 2805f4705..963ee39ee 100644 --- a/package.json +++ b/package.json @@ -31,11 +31,11 @@ "prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", "publish": "npm run clean && npm run build:dist && node scripts/tag-versions.js && lerna publish --yes -m \"Publish\" from-package", "remove:dependency": "remove-dependency", - "test": "lerna run test --concurrency 1 --scope \"@lumino/!(example-)*\"", - "test:chromium": "lerna run test:chromium --concurrency 1", - "test:examples": "lerna run test --scope \"@lumino/example-*\"", - "test:firefox": "lerna run test:firefox --concurrency 1", - "test:webkit": "lerna run test:webkit --concurrency 1", + "test": "lerna run test --concurrency 1 --no-bail --scope \"@lumino/!(example-)*\"", + "test:chromium": "lerna run test:chromium --no-bail --concurrency 1", + "test:examples": "lerna run test --no-bail --scope \"@lumino/example-*\"", + "test:firefox": "lerna run test:firefox --no-bail --concurrency 1", + "test:webkit": "lerna run test:webkit --no-bail --concurrency 1", "update:dependency": "update-dependency --lerna", "update:versions": "lerna version --no-push --no-git-tag-version", "prepare": "husky install"