Skip to content

Commit 50b8ab0

Browse files
committed
Move Integration tests out of workflows
1 parent 6279b40 commit 50b8ab0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

packages/messaging/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"build": "rollup -c",
1616
"build:deps": "lerna run --scope @firebase/'{app,messaging}' --include-dependencies build",
1717
"dev": "rollup -c -w",
18-
"test": "run-p test:karma type-check lint && cd ../../integration/messaging && npm run-script test",
18+
"test": "run-p test:karma type-check lint ",
19+
"test:integration": "run-p test:karma type-check lint && cd ../../integration/messaging && npm run-script test",
1920
"test:ci": "node ../../scripts/run_tests_in_ci.js",
2021
"test:karma": "karma start --single-run",
2122
"test:debug": "karma start --browsers=Chrome --auto-watch",

scripts/run_saucelabs.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,8 @@ const testFiles = configFiles.length
3838
? configFiles
3939
: glob
4040
.sync(`{packages,integration}/*/karma.conf.js`)
41-
.filter(
42-
name =>
43-
!name.includes('integration/firestore') &&
44-
!name.includes('integration/messaging')
45-
);
41+
// Automated tests in integration/firestore are currently disabled.
42+
.filter(name => !name.includes('integration/firestore'));
4643

4744
// Get CI build number or generate one if running locally.
4845
const buildNumber =

0 commit comments

Comments
 (0)