Skip to content

Commit

Permalink
test(schematic): revert objectContaining
Browse files Browse the repository at this point in the history
  • Loading branch information
KingDarBoja committed Mar 14, 2021
1 parent eac86f1 commit 967c17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firestore/document/document.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('AngularFirestoreDocument', () => {
const obs$ = stock.valueChanges({ idField });
obs$.pipe(take(1)).subscribe(async data => {
expect(data[idField]).toBeDefined();
expect(data).toEqual(FAKE_STOCK_DATA);
expect(data).toEqual(jasmine.objectContaining(FAKE_STOCK_DATA));
stock.delete().then(done).catch(done.fail);
});
});
Expand Down

0 comments on commit 967c17a

Please sign in to comment.