Skip to content

Commit 5de3ec6

Browse files
authored
Add yarn script that runs tests on non-exp packages only (#3267)
1 parent acd89ee commit 5de3ec6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"pretest": "node tools/pretest.js",
3434
"test": "lerna run --concurrency 4 --stream test",
3535
"test:ci": "lerna run --concurrency 4 --stream test:ci",
36+
"test:release": "lerna run --concurrency 4 --ignore @firebase/*-exp --ignore firebase-exp --stream test:ci",
3637
"test:exp": "lerna run --concurrency 4 --stream --scope @firebase/*-exp --scope firebase-exp test",
3738
"pretest:coverage": "mkdirp coverage",
3839
"ci:coverage": "lcov-result-merger 'packages/**/lcov.info' 'lcov-all.info'",

scripts/release/utils/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const ora = require('ora');
2121

2222
exports.runTests = async () => {
2323
try {
24-
await spawn('yarn', ['test'], {
24+
await spawn('yarn', ['test:release'], {
2525
cwd: root,
2626
stdio: 'inherit'
2727
});

0 commit comments

Comments
 (0)