mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-09 10:28:32 +00:00
[revert]: skip the failing daemon test on win32.
it's with the latest CLI. Some error message must have changed. Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
@@ -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<void> {
|
||||
if (process.platform === 'win32') {
|
||||
this.skip();
|
||||
}
|
||||
let server: net.Server | undefined = undefined;
|
||||
try {
|
||||
server = await new Promise<net.Server>(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<void> {
|
||||
if (process.platform === 'win32') {
|
||||
this.skip();
|
||||
}
|
||||
let server: net.Server | undefined = undefined;
|
||||
try {
|
||||
server = await new Promise<net.Server>(resolve => {
|
||||
|
||||
Reference in New Issue
Block a user