Skip to content

Commit 75ed5ce

Browse files
author
Your Name
committed
test
1 parent 01209c7 commit 75ed5ce

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

arduino-ide-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"reporter": "spec",
141141
"colors": true,
142142
"watch-extensions": "js",
143-
"timeout": 20000
143+
"timeout": 10000
144144
},
145145
"files": [
146146
"lib",

arduino-ide-extension/src/test/node/boards-service-impl.slow-test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ describe('boards-service-impl', () => {
3535

3636
describe('search', () => {
3737
it('should run search', async function () {
38-
this.timeout(20_000);
3938
const result = await boardService.search({});
4039
expect(result).is.not.empty;
4140
});

arduino-ide-extension/src/test/node/node-test-bindings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ export async function startDaemon(
317317
configService.onStart();
318318
daemon.onStart();
319319
await Promise.all([
320-
waitForEvent(daemon.onDaemonStarted, 20_000),
320+
waitForEvent(daemon.onDaemonStarted, 10_000),
321321
coreClientProvider.client,
322322
]);
323323
if (startCustomizations) {

0 commit comments

Comments
 (0)