Skip to content

Commit 7cecae5

Browse files
committed
format fixes
1 parent 08104e7 commit 7cecae5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

packages/app/src/api.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ describe('API tests', () => {
290290
};
291291

292292
const serverAppSettingsTwo: FirebaseServerAppSettings = {
293-
automaticDataCollectionEnabled: false,
293+
automaticDataCollectionEnabled: false
294294
};
295-
295+
296296
const appOne = initializeServerApp(options, serverAppSettingsOne);
297297
expect(appOne).to.not.equal(null);
298298
expect(appOne.automaticDataCollectionEnabled).to.be.false;
@@ -322,7 +322,7 @@ describe('API tests', () => {
322322
expect(appTwo).to.not.equal(null);
323323
expect(appTwo).to.equal(appOne);
324324
await deleteApp(appOne);
325-
325+
326326
// TODO: When Reference Counting works, update test. The following line should be false
327327
// until and the app should be deleted a second time.
328328
expect((appOne as FirebaseServerAppImpl).isDeleted).to.be.true;

packages/app/src/firebaseServerApp.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('FirebaseServerApp', () => {
3535
const firebaseServerAppImpl = new FirebaseServerAppImpl(
3636
options,
3737
serverAppSettings,
38-
"testName",
38+
'testName',
3939
new ComponentContainer('test')
4040
);
4141

@@ -56,7 +56,7 @@ describe('FirebaseServerApp', () => {
5656
const firebaseServerAppImpl = new FirebaseServerAppImpl(
5757
options,
5858
serverAppSettings,
59-
"testName",
59+
'testName',
6060
new ComponentContainer('test')
6161
);
6262

@@ -77,7 +77,7 @@ describe('FirebaseServerApp', () => {
7777
const firebaseServerAppImpl = new FirebaseServerAppImpl(
7878
options,
7979
serverAppSettings,
80-
"testName",
80+
'testName',
8181
new ComponentContainer('test')
8282
);
8383

@@ -99,7 +99,7 @@ describe('FirebaseServerApp', () => {
9999
const app = new FirebaseServerAppImpl(
100100
options,
101101
serverAppSettings,
102-
"testName",
102+
'testName',
103103
new ComponentContainer('test')
104104
);
105105

@@ -126,7 +126,7 @@ describe('FirebaseServerApp', () => {
126126
const app = new FirebaseServerAppImpl(
127127
options,
128128
serverAppSettings,
129-
"testName",
129+
'testName',
130130
new ComponentContainer('test')
131131
);
132132

0 commit comments

Comments
 (0)