File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 15
15
"build" : " rollup -c" ,
16
16
"build:deps" : " lerna run --scope @firebase/'{app,messaging}' --include-dependencies build" ,
17
17
"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" ,
19
20
"test:ci" : " node ../../scripts/run_tests_in_ci.js" ,
20
21
"test:karma" : " karma start --single-run" ,
21
22
"test:debug" : " karma start --browsers=Chrome --auto-watch" ,
Original file line number Diff line number Diff line change @@ -38,11 +38,8 @@ const testFiles = configFiles.length
38
38
? configFiles
39
39
: glob
40
40
. 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' ) ) ;
46
43
47
44
// Get CI build number or generate one if running locally.
48
45
const buildNumber =
You can’t perform that action at this time.
0 commit comments