We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c5af87 commit 142f160Copy full SHA for 142f160
packages/plugin-eslint/src/lib/nx.integration.test.ts
@@ -1,4 +1,5 @@
1
import path from 'node:path';
2
+import process from 'node:process';
3
import { fileURLToPath } from 'node:url';
4
import type { MockInstance } from 'vitest';
5
import { executeProcess } from '@code-pushup/utils';
@@ -11,7 +12,7 @@ import {
11
12
13
type Project = 'cli' | 'core' | 'nx-plugin' | 'utils';
14
-describe('Nx helpers', () => {
15
+describe.skipIf(() => process.platform === 'win32')('Nx helpers', () => {
16
let cwdSpy: MockInstance<[], string>;
17
18
beforeAll(async () => {
0 commit comments