mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 14:26:37 +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:
parent
43abbf6fb8
commit
f503ef0fcf
@ -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 => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user