Skip to content

Commit

Permalink
ci: increased the timeout for the legacy page
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoraboeuf committed Dec 15, 2024
1 parent bf0d094 commit 65290c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ontrack-web-tests/tests/core/legacy/legacyHome.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ export class LegacyHomePage {
}

async checkCreateProject() {
await expect(this.page.getByRole('button', {name: 'Create Project'})).toBeVisible()
await expect(this.page.getByRole('button', {name: 'Create Project'})).toBeVisible({timeout: 15_000})
}

async checkNextUI() {
await expect(this.page.getByRole('button', {name: 'Next UI'})).toBeVisible()
await expect(this.page.getByRole('button', {name: 'Next UI'})).toBeVisible({timeout: 15_000})
}

}

0 comments on commit 65290c7

Please sign in to comment.