Skip to content

Commit 39c112a

Browse files
committed
refactor: fix int 3
1 parent 57c13c6 commit 39c112a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/plugin-eslint/src/lib/runner.int.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ describe('executeRunner', () => {
3939

4040
beforeAll(() => {
4141
cwdSpy = vi.spyOn(process, 'cwd').mockReturnValue(appDir);
42-
// Windows does not require additional quotation marks for globs
43-
platformSpy = vi.spyOn(os, 'platform').mockReturnValue('win32');
42+
// Use the actual platform for proper glob handling
43+
platformSpy = vi.spyOn(os, 'platform').mockReturnValue(process.platform);
4444
});
4545

4646
afterAll(() => {

0 commit comments

Comments
 (0)