Skip to content

Commit 49d7fa1

Browse files
committed
fix: 🐛 Fix playwright test
1 parent ae1a4b7 commit 49d7fa1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

e2e/support/app.ts

+2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ export default class App {
7575
*/
7676
async closeAllTabs() {
7777
await this.triggerCommand("closeAllTabs");
78+
// Page in Playwright is not updated somehow, need to click on the tab to make sure it's rendered
79+
await this.getTab(0).click();
7880
}
7981

8082
/**

0 commit comments

Comments
 (0)