Skip to content

Commit

Permalink
ci: increase datagrid rightclick timeout/ reduce worker count (#9951)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonG authored Sep 25, 2024
1 parent e92c474 commit c8b1910
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webui/react/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ export default defineConfig({
reuseExistingServer: !process.env.CI,
},

workers: process.env.CI ? 4 : 1,
workers: process.env.CI ? 3 : undefined,
});
2 changes: 1 addition & 1 deletion webui/react/src/e2e/models/common/hew/DataGrid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export class Row<HeadRowType extends HeadRow<Row<HeadRowType>>> extends NamedCom
await this.parentTable.pwLocator.click({
button: 'right',
position: { x: 5, y: this.getY(await this.getIndex()) },
timeout: 10_000,
timeout: 30_000,
});
}

Expand Down

0 comments on commit c8b1910

Please sign in to comment.