Skip to content

Commit 275b6db

Browse files
committed
Fixed error
1 parent 1bff800 commit 275b6db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/data-connect/test/unit/typings.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import { deleteApp, initializeApp } from '@firebase/app';
1919
import { DataConnect, getDataConnect, QueryRef, queryRef } from '../../src/api';
2020
describe('Typings', () => {
21-
it('should properly infer the type', () => {
21+
it('should properly infer the type', async () => {
2222
interface MyData {
2323
extraField: boolean;
2424
}
@@ -40,6 +40,6 @@ describe('Typings', () => {
4040
return { data };
4141
}
4242
myFn(extendedType).data.extraField;
43-
deleteApp(app);
43+
await deleteApp(app);
4444
});
4545
});

0 commit comments

Comments
 (0)