File tree 2 files changed +8
-8
lines changed 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -290,9 +290,9 @@ describe('API tests', () => {
290
290
} ;
291
291
292
292
const serverAppSettingsTwo : FirebaseServerAppSettings = {
293
- automaticDataCollectionEnabled : false ,
293
+ automaticDataCollectionEnabled : false
294
294
} ;
295
-
295
+
296
296
const appOne = initializeServerApp ( options , serverAppSettingsOne ) ;
297
297
expect ( appOne ) . to . not . equal ( null ) ;
298
298
expect ( appOne . automaticDataCollectionEnabled ) . to . be . false ;
@@ -322,7 +322,7 @@ describe('API tests', () => {
322
322
expect ( appTwo ) . to . not . equal ( null ) ;
323
323
expect ( appTwo ) . to . equal ( appOne ) ;
324
324
await deleteApp ( appOne ) ;
325
-
325
+
326
326
// TODO: When Reference Counting works, update test. The following line should be false
327
327
// until and the app should be deleted a second time.
328
328
expect ( ( appOne as FirebaseServerAppImpl ) . isDeleted ) . to . be . true ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ describe('FirebaseServerApp', () => {
35
35
const firebaseServerAppImpl = new FirebaseServerAppImpl (
36
36
options ,
37
37
serverAppSettings ,
38
- " testName" ,
38
+ ' testName' ,
39
39
new ComponentContainer ( 'test' )
40
40
) ;
41
41
@@ -56,7 +56,7 @@ describe('FirebaseServerApp', () => {
56
56
const firebaseServerAppImpl = new FirebaseServerAppImpl (
57
57
options ,
58
58
serverAppSettings ,
59
- " testName" ,
59
+ ' testName' ,
60
60
new ComponentContainer ( 'test' )
61
61
) ;
62
62
@@ -77,7 +77,7 @@ describe('FirebaseServerApp', () => {
77
77
const firebaseServerAppImpl = new FirebaseServerAppImpl (
78
78
options ,
79
79
serverAppSettings ,
80
- " testName" ,
80
+ ' testName' ,
81
81
new ComponentContainer ( 'test' )
82
82
) ;
83
83
@@ -99,7 +99,7 @@ describe('FirebaseServerApp', () => {
99
99
const app = new FirebaseServerAppImpl (
100
100
options ,
101
101
serverAppSettings ,
102
- " testName" ,
102
+ ' testName' ,
103
103
new ComponentContainer ( 'test' )
104
104
) ;
105
105
@@ -126,7 +126,7 @@ describe('FirebaseServerApp', () => {
126
126
const app = new FirebaseServerAppImpl (
127
127
options ,
128
128
serverAppSettings ,
129
- " testName" ,
129
+ ' testName' ,
130
130
new ComponentContainer ( 'test' )
131
131
) ;
132
132
You can’t perform that action at this time.
0 commit comments