Skip to content

Commit b240754

Browse files
committed
Disbale Cross Browser FCM Integration Test
1 parent 590c9a4 commit b240754

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

scripts/run_saucelabs.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@ const { configFiles } = yargs
3636
// runNextTest() pulls filenames one-by-one from this queue.
3737
const testFiles = configFiles.length
3838
? configFiles
39-
: glob
40-
.sync(`{packages,integration}/*/karma.conf.js`)
41-
// Automated tests in integration/firestore are currently disabled.
42-
.filter(name => !name.includes('integration/firestore'));
39+
: glob.sync(`{packages,integration}/*/karma.conf.js`).filter(
40+
name =>
41+
// Automated tests in integration/firestore and are currently disabled.
42+
!name.includes('integration/firestore') &&
43+
!name.includes('integration/messaging')
44+
);
4345

4446
// Get CI build number or generate one if running locally.
4547
const buildNumber =

0 commit comments

Comments
 (0)