Skip to content

Commit bc27761

Browse files
committed
chore: skip e2e tests on windows for now
1 parent 7e860dc commit bc27761

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/commands.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import { describe, expect, it } from 'vitest'
99

1010
const fixtureDir = fileURLToPath(new URL('../../playground', import.meta.url))
1111

12-
describe('commands', () => {
12+
// TODO: fix tests on windows
13+
describe.skipIf(isWindows)('commands', () => {
1314
const tests: Record<keyof typeof commands, 'todo' | TestFunction<object>> = {
1415
_dev: 'todo',
1516
add: 'todo',

0 commit comments

Comments
 (0)