Skip to content

Commit

Permalink
moved before block inside describe
Browse files Browse the repository at this point in the history
  • Loading branch information
ShoeBoom committed Sep 2, 2020
1 parent 72da012 commit bcb3519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/integration/providers/firestore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { expect } from 'chai';
import { firestore, initializeApp } from 'firebase-admin';
import fft = require('../../../src/index');

before(() => {
initializeApp();
});

describe('providers/firestore', () => {
before(() => {
initializeApp();
});

it('clears database with clearFirestoreData', async () => {
const test = fft({ projectId: 'not-a-project' });
const db = firestore();
Expand Down

0 comments on commit bcb3519

Please sign in to comment.