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 b240754 commit c7d4518Copy full SHA for c7d4518
scripts/run_saucelabs.js
@@ -36,12 +36,13 @@ const { configFiles } = yargs
36
// runNextTest() pulls filenames one-by-one from this queue.
37
const testFiles = configFiles.length
38
? configFiles
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
- );
+ : glob
+ .sync(`{packages,integration}/*/karma.conf.js`)
+ .filter(
+ name =>
+ !name.includes('integration/firestore') &&
+ !name.includes('integration/messaging')
45
+ );
46
47
// Get CI build number or generate one if running locally.
48
const buildNumber =
0 commit comments