File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/firestore/test/integration/util Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 20
20
// reference to the minified sources. If you change any exports in this file,
21
21
// you need to also adjust "integration/firestore/firebase_export.ts".
22
22
23
- import { FirebaseApp , initializeApp } from '@firebase/app' ;
23
+ import { FirebaseApp , initializeApp , setLogLevel } from '@firebase/app' ;
24
24
25
25
import { Firestore , initializeFirestore } from '../../../src' ;
26
26
import { PrivateSettings } from '../../../src/lite-api/settings' ;
@@ -29,6 +29,8 @@ import { PrivateSettings } from '../../../src/lite-api/settings';
29
29
// every test and never clean them up. We may need to revisit.
30
30
let appCount = 0 ;
31
31
32
+ setLogLevel ( 'debug' ) ;
33
+
32
34
export function newTestApp ( projectId : string , appName ?: string ) : FirebaseApp {
33
35
if ( appName === undefined ) {
34
36
appName = 'test-app-' + appCount ++ ;
You can’t perform that action at this time.
0 commit comments