Skip to content

Commit 7750a3f

Browse files
author
Your Name
committed
arm64
1 parent 75ed5ce commit 7750a3f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
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": 10000
143+
"timeout": 20000
144144
},
145145
"files": [
146146
"lib",

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

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

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

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, 10_000),
320+
waitForEvent(daemon.onDaemonStarted, 20_000),
321321
coreClientProvider.client,
322322
]);
323323
if (startCustomizations) {

0 commit comments

Comments
 (0)