We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c13c6 commit 39c112aCopy full SHA for 39c112a
1 file changed
packages/plugin-eslint/src/lib/runner.int.test.ts
@@ -39,8 +39,8 @@ describe('executeRunner', () => {
39
40
beforeAll(() => {
41
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');
+ // Use the actual platform for proper glob handling
+ platformSpy = vi.spyOn(os, 'platform').mockReturnValue(process.platform);
44
});
45
46
afterAll(() => {
0 commit comments