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:
camc314 2024-08-31 18:56:25 +00:00
parent 11b93af0d1
commit ed31d67b51

View file

@ -152,7 +152,7 @@ pub fn collect_possible_jest_call_node<'a, 'b>(
// ```
// import { jest as Jest } from '@jest/globals';
// Jest.setTimeout(800);
// test('test', () => {
// test('test', () => {
// expect(1 + 2).toEqual(3);
// });
// ```