Skip to content

Commit

Permalink
Add case from #295
Browse files Browse the repository at this point in the history
  • Loading branch information
domsleee committed Oct 15, 2023
1 parent 0bb7c08 commit 124afa6
Show file tree
Hide file tree
Showing 8 changed files with 1,341 additions and 809 deletions.
8 changes: 8 additions & 0 deletions examples/examples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ describe('Example tests', () => {
expect(true);
});

// #319
it(`test with
lf`, () => {
expect(true);
Expand Down Expand Up @@ -54,6 +55,13 @@ lf`, () => {
});
});

// #295
describe('a "(name)"', () => {
it('mix of paranthesis and double quotes', () => {
expect(1).toBe(1);
});
});

// #311
it.each([1, 2])('test with generated %i', (id) => {
expect(true);
Expand Down
Loading

0 comments on commit 124afa6

Please sign in to comment.