Skip to content

Commit

Permalink
chore(node): Remove test.only usage in context lines (#8485)
Browse files Browse the repository at this point in the history
We should prob lint against this.
  • Loading branch information
AbhiPrasad committed Jul 11, 2023
1 parent db9523e commit 428e531
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/node/test/context-lines.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ describe('ContextLines', () => {
expect(readFileSpy).toHaveBeenCalledTimes(0);
});
});
test.only('does not attempt to readfile multiple times if it fails', async () => {

test('does not attempt to readfile multiple times if it fails', async () => {
expect.assertions(1);
contextLines = new ContextLines({});

Expand Down

0 comments on commit 428e531

Please sign in to comment.