Skip to content

Commit 676a709

Browse files
committed
ci: ignore global action error
1 parent 66f4c5b commit 676a709

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

e2e/assertions/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,11 @@ async function clickGlobalAction(bottomBar: BottomBarPanel, label: string) {
126126
} catch {
127127
// the panel is already maximized
128128
}
129-
if (action) {
130-
await action.click()
129+
try {
130+
if (action) {
131+
await action.click()
132+
}
133+
} catch {
134+
// pass
131135
}
132136
}

0 commit comments

Comments
 (0)