From 74008ff85da169f9131359c1288a61ee02da0735 Mon Sep 17 00:00:00 2001 From: reaper Date: Wed, 26 Aug 2026 02:33:45 -0500 Subject: [PATCH] test: skip Linux supervisor integration on Windows --- src/main/native/processSupervisor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/native/processSupervisor.test.ts b/src/main/native/processSupervisor.test.ts index 807063d..3c2bd51 100644 --- a/src/main/native/processSupervisor.test.ts +++ b/src/main/native/processSupervisor.test.ts @@ -5,7 +5,7 @@ import { describe, expect, it } from 'vitest' import { allocateNativePorts } from './portAllocator' import { NativeProcessSupervisor } from './processSupervisor' -describe('native process supervisor', () => { +describe.skipIf(process.platform === 'win32')('native process supervisor', () => { it('starts, health-checks, logs, and stops a native service', async () => { const root = await mkdtemp(join(tmpdir(), 'aurora-native-supervisor-')) const port = (await allocateNativePorts()).http