Skip to content

Commit 7d34378

Browse files
committed
add timeouts
Signed-off-by: Alejandro Brugarolas <[email protected]>
1 parent 5f080f9 commit 7d34378

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

e2e/pages/vscode.pages.ts

+2
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ export class VSCode extends Application {
158158
await this.executeQuickCommand('sources and targets');
159159
await this.waitDefault();
160160
const targetInput = window.getByPlaceholder('Choose one or more target');
161+
await this.waitDefault();
161162
await expect(targetInput).toBeVisible({ timeout: 30000 });
162163
for (const target of targets) {
163164
await targetInput.fill(target);
@@ -225,6 +226,7 @@ export class VSCode extends Application {
225226
public async startServer(): Promise<void> {
226227
await this.openAnalysisView();
227228
const analysisView = await this.getAnalysisIframe();
229+
await this.waitDefault();
228230
if (
229231
!(await analysisView.getByRole('button', { name: 'Stop' }).isVisible())
230232
) {

0 commit comments

Comments
 (0)