Skip to content

Commit

Permalink
Improve coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Mar 13, 2017
1 parent 0d80d85 commit 80e1dff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/pipes/helpers/helpers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ describe('Utils Tests', () => {
expect(isDeepEqual({a: 1, b: 2}, {a: 1, b: 1})).toBeFalsy();
expect(isDeepEqual({a: 1, b: 2, c: {d: 3}}, {a: 1, b: 2, c: {d: 1}})).toBeFalsy();
expect(isDeepEqual({a: 1, b: 2, c: {d: 3}}, {a: 1, b: 2, c: {d: 3}})).toBeTruthy();
expect(isDeepEqual({a: 1, b: 2, c: {d: 3}}, {a: 1, b: 2, c: {d: {}}})).toBeFalsy();
});
});

0 comments on commit 80e1dff

Please sign in to comment.