From 11bd4e416094700e9f7a202bab5bb1f6123d7ebd Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Sun, 13 May 2018 21:31:15 -0700 Subject: [PATCH] Fix debug smoketest - frame contents can wrap but stay hidden - ensure that click lands on the correct frame --- test/smoke/src/areas/debug/debug.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke/src/areas/debug/debug.ts b/test/smoke/src/areas/debug/debug.ts index 595cafad7e4..312d99ce0db 100644 --- a/test/smoke/src/areas/debug/debug.ts +++ b/test/smoke/src/areas/debug/debug.ts @@ -120,7 +120,7 @@ export class Debug extends Viewlet { } async focusStackFrame(name: string, message: string): Promise { - await this.code.waitAndClick(SPECIFIC_STACK_FRAME(name)); + await this.code.waitAndClick(SPECIFIC_STACK_FRAME(name), 0, 0); await this.editors.waitForTab(name); }