File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -403,17 +403,17 @@ function firebaseAppTests(
403403 ) . throws ( / ' a b c ' .* e x i s t s / i) ;
404404 } ) ;
405405
406- it ( 'automaticDataCollectionEnabled is `false ` by default' , ( ) => {
406+ it ( 'automaticDataCollectionEnabled is `true ` by default' , ( ) => {
407407 const app = firebase . initializeApp ( { } , 'my-app' ) ;
408- expect ( app . automaticDataCollectionEnabled ) . to . eq ( false ) ;
408+ expect ( app . automaticDataCollectionEnabled ) . to . eq ( true ) ;
409409 } ) ;
410410
411411 it ( 'automaticDataCollectionEnabled can be set via the config object' , ( ) => {
412412 const app = firebase . initializeApp (
413413 { } ,
414- { automaticDataCollectionEnabled : true }
414+ { automaticDataCollectionEnabled : false }
415415 ) ;
416- expect ( app . automaticDataCollectionEnabled ) . to . eq ( true ) ;
416+ expect ( app . automaticDataCollectionEnabled ) . to . eq ( false ) ;
417417 } ) ;
418418
419419 it ( 'Modifying options object does not change options.' , ( ) => {
You can’t perform that action at this time.
0 commit comments