Skip to content

Commit 9c26d26

Browse files
committed
Try increasing timeout for MacOS
1 parent fb6f85c commit 9c26d26

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/features/DebugSession.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,10 @@ describe("DebugSessionFeature", () => {
393393

394394
describe("DebugSessionFeature E2E", function slowTests() {
395395
this.slow(20000); // Will warn if test takes longer than 10s and show red if longer than 20s
396+
397+
if (process.platform == "darwin") {
398+
this.timeout(60000); // The MacOS test runner is sloooow in Azure Devops
399+
}
396400
before(async () => {
397401
// Registers and warms up the debug adapter and the PowerShell Extension Terminal
398402
await ensureEditorServicesIsConnected();

0 commit comments

Comments
 (0)