We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590c9a4 commit b240754Copy full SHA for b240754
scripts/run_saucelabs.js
@@ -36,10 +36,12 @@ const { configFiles } = yargs
36
// runNextTest() pulls filenames one-by-one from this queue.
37
const testFiles = configFiles.length
38
? 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'));
+ : glob.sync(`{packages,integration}/*/karma.conf.js`).filter(
+ name =>
+ // Automated tests in integration/firestore and are currently disabled.
+ !name.includes('integration/firestore') &&
43
+ !name.includes('integration/messaging')
44
+ );
45
46
// Get CI build number or generate one if running locally.
47
const buildNumber =
0 commit comments