Skip to content

Commit ceee512

Browse files
committed
Dont await the deletion
1 parent 1c10258 commit ceee512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/auth-guard/auth-guard.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ describe('AngularFireAuthGuard', () => {
3030
router = TestBed.inject(Router);
3131
});
3232

33-
afterEach(done => {
34-
app.delete().then(done, done);
33+
afterEach(() => {
34+
app.delete().catch();
3535
});
3636

3737
it('should be injectable', () => {

0 commit comments

Comments
 (0)