Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit feed351

Browse files
committed
Increase timeout for test failing on ADO
1 parent d076aab commit feed351

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/programmermanager.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ suite("Arduino: Programmer Manager.", () => {
6868
assert.equal(programmerManager.currentDisplayName, "arduino:jtag3isp");
6969
});
7070

71-
test("changing arduino.ino value should change programmer", (done) => {
71+
test("changing arduino.ino value should change programmer", function(done) {
72+
this.timeout(3 * 60 * 1000);
7273
DeviceContext.getInstance().programmer = programmers[0].name;
7374
setTimeout(() => {
7475
assert.equal(programmerManager.currentProgrammer, programmers[0].key);

0 commit comments

Comments
 (0)