Skip to content

Commit 9c4d5a6

Browse files
committed
Timing issue?
1 parent dea5e8d commit 9c4d5a6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/e2e/models/CodeServer.ts

+3
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,10 @@ export class CodeServerPage {
565565
// it, left click and open the context menu using Shift+F10 instead.
566566
const el = await this.page.waitForSelector(selector)
567567
await el.click({ button: "left" })
568+
// WIP: just seeing if this is a timing issue
569+
await new Promise((r) => setTimeout(r, 1000))
568570
await this.page.keyboard.press("Shift+F10")
571+
await new Promise((r) => setTimeout(r, 1000))
569572
await this.page.waitForSelector(".context-view-block")
570573
}
571574

0 commit comments

Comments
 (0)