mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
refactor(linter/jest): fix indentation in code comment (#5372)
previously, `test('...` was indented, making it look like it was inside a block statement/callback.
this PR corrects this by fixing the indentation
This commit is contained in:
parent
11b93af0d1
commit
ed31d67b51
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ pub fn collect_possible_jest_call_node<'a, 'b>(
|
||||||
// ```
|
// ```
|
||||||
// import { jest as Jest } from '@jest/globals';
|
// import { jest as Jest } from '@jest/globals';
|
||||||
// Jest.setTimeout(800);
|
// Jest.setTimeout(800);
|
||||||
// test('test', () => {
|
// test('test', () => {
|
||||||
// expect(1 + 2).toEqual(3);
|
// expect(1 + 2).toEqual(3);
|
||||||
// });
|
// });
|
||||||
// ```
|
// ```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue