Skip to content

Commit

Permalink
chore(test): Bump the nesting of the generic recursion test for good …
Browse files Browse the repository at this point in the history
…measure
  • Loading branch information
martinjlowm committed Jun 27, 2020
1 parent 086b1da commit aa5285f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/transformer/descriptor/generic/extends.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ describe('for generic', () => {
it('should avoid infinite extension', () => {
const propertiesA: A = createMock<A>();
const propertiesB: B = createMock<B>();
expect(propertiesA.a.a.b).toBe(0);
expect(propertiesA.a.a.a.b).toBe(0);
expect(propertiesA.b).toBe(0);
expect(propertiesB.a.a.c).toBe('');
expect(propertiesB.a.a.a.c).toBe('');
expect(propertiesB.c).toBe('');
});
});
Expand Down

0 comments on commit aa5285f

Please sign in to comment.