Skip to content

Commit 92e3995

Browse files
chore: run both test suites regardless of unit test failures
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent cf18a27 commit 92e3995

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"lint:js": "eslint .",
88
"lint:css": "stylelint blocks/**/*.css styles/*.css",
99
"lint": "npm run lint:js && npm run lint:css",
10-
"test": "npm run test:unit && npm run test:extractions",
10+
"test": "npm run test:unit; e1=$?; npm run test:extractions; e2=$?; exit $((e1 | e2))",
1111
"test:unit": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage --concurrent-browsers 4",
1212
"test:extractions": "node --test test/extractions/*.node.test.js",
1313
"test:watch": "npm run test:unit -- --watch",

0 commit comments

Comments
 (0)