Skip to content

Commit 0cfddd2

Browse files
chore: allow skipping of browser tests (#4246)
* chore: allow skipping of browser tests * fix(web-components): make yarn test work in windows Co-authored-by: Richard Gibson <richard.gibson@gmail.com> Co-authored-by: Richard Gibson <richard.gibson@gmail.com>
1 parent f96b728 commit 0cfddd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"module": "index.js",
99
"scripts": {
1010
"build": "exit 0",
11-
"test": "web-test-runner --coverage",
11+
"test": "node -e 'process.exit(process.env.SKIP_BROWSER_TESTS==\"true\" ? 0 : 1)' || web-test-runner --coverage",
1212
"test:c8": "exit 0",
1313
"test:xs": "exit 0",
1414
"test:watch": "web-test-runner --watch",

0 commit comments

Comments
 (0)