Skip to content

Commit 6d63e58

Browse files
authored
fix(dev): Add missing --ignore in main yarn test command (#4756)
As part of #4694, which adds integration tests for node, a change was made to the repo-level `yarn test` command, in order to skip running the new tests. The new version of the command was missing a `--ignore` flag, though, causing the command to error out. This adds the missing flag.
1 parent 3657d2e commit 6d63e58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"lint:eslint": "lerna run --parallel lint:eslint",
2323
"prepublishOnly": "lerna run --stream --concurrency 1 prepublishOnly",
2424
"postpublish": "make publish-docs && lerna run --stream --concurrency 1 postpublish",
25-
"test": "lerna run --ignore @sentry-internal/browser-integration-tests @sentry-internal/node-integration-tests --stream --concurrency 1 --sort test",
25+
"test": "lerna run --ignore @sentry-internal/browser-integration-tests --ignore @sentry-internal/node-integration-tests --stream --concurrency 1 --sort test",
2626
"test-ci": "ts-node ./scripts/test.ts"
2727
},
2828
"volta": {

0 commit comments

Comments
 (0)