Skip to content

Commit c7d4518

Browse files
committed
Update run_saucelabs.js
1 parent b240754 commit c7d4518

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

scripts/run_saucelabs.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@ const { configFiles } = yargs
3636
// runNextTest() pulls filenames one-by-one from this queue.
3737
const testFiles = configFiles.length
3838
? 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-
);
39+
: glob
40+
.sync(`{packages,integration}/*/karma.conf.js`)
41+
.filter(
42+
name =>
43+
!name.includes('integration/firestore') &&
44+
!name.includes('integration/messaging')
45+
);
4546

4647
// Get CI build number or generate one if running locally.
4748
const buildNumber =

0 commit comments

Comments
 (0)