diff --git a/arduino-ide-extension/src/test/node/arduino-daemon-impl.test.ts b/arduino-ide-extension/src/test/node/arduino-daemon-impl.test.ts index 7bbec0e1..e7bd6050 100644 --- a/arduino-ide-extension/src/test/node/arduino-daemon-impl.test.ts +++ b/arduino-ide-extension/src/test/node/arduino-daemon-impl.test.ts @@ -51,7 +51,10 @@ describe('arduino-daemon-impl', () => { track.cleanupSync(); }) - it('should parse an error - address already in use error [json]', async () => { + it('should parse an error - address already in use error [json]', async function (): Promise { + if (process.platform === 'win32') { + this.skip(); + } let server: net.Server | undefined = undefined; try { server = await new Promise(resolve => { @@ -71,7 +74,10 @@ describe('arduino-daemon-impl', () => { } }); - it('should parse an error - address already in use error [text]', async () => { + it('should parse an error - address already in use error [text]', async function (): Promise { + if (process.platform === 'win32') { + this.skip(); + } let server: net.Server | undefined = undefined; try { server = await new Promise(resolve => {