From deb7edec0405621e110a9b5fd1354ee938bfe620 Mon Sep 17 00:00:00 2001 From: Jon Church Date: Sat, 14 Sep 2024 18:22:40 -0400 Subject: [PATCH] remove --bail from test script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c1eff78d974..3a10ae4dc5b 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ ], "scripts": { "lint": "eslint .", - "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", + "test": "mocha --require test/support/env --reporter spec --check-leaks test/ test/acceptance/", "test-ci": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test", "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"