Skip to content

Commit 120e9a7

Browse files
committed
chore: lint
1 parent 4107f8e commit 120e9a7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/cli/test/mocking.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -407,12 +407,10 @@ test('doMock/doUnmock ordering is preserved in resolveMocks', async () => {
407407
const mockEntries = Array.from({ length: N }, (_, i) => `\
408408
vi.doUnmock('/mock-lib-${i}');
409409
vi.doMock('/mock-lib-${i}', () => ({ value: ${i} }));
410-
`
411-
).join('\n')
410+
`).join('\n')
412411
const importChecks = Array.from({ length: N }, (_, i) => `\
413412
await expect(import('/mock-lib-${i}')).resolves.toEqual({ value: ${i} });
414-
`,
415-
).join('\n')
413+
`).join('\n')
416414

417415
const { stderr, errorTree } = await runInlineTests({
418416
'./basic.test.js': `

0 commit comments

Comments
 (0)