Skip to content

Commit

Permalink
Fix typo to clear both collections before running each test
Browse files Browse the repository at this point in the history
  • Loading branch information
robfyfemondo committed Jul 28, 2023
1 parent d447d3d commit 5998fd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class TransactionalService {
describe("Transactional", () => {
const collection1 = "transactional1";
const collection2 = "transactional2";
useFirestoreTest({ clearCollections: [collection1, collection1] });
useFirestoreTest({ clearCollections: [collection1, collection2] });

let firestore: Firestore;
let repository1: FirestoreRepository<RepositoryItem>;
Expand Down

0 comments on commit 5998fd5

Please sign in to comment.