Skip to content

Commit

Permalink
test: Fix download shortcut test flakiness (#2350)
Browse files Browse the repository at this point in the history
Follow up fix on #2336
  • Loading branch information
ericlln authored Jan 28, 2025
1 parent 680f015 commit ae544fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/shortcuts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ test('shortcut downloads logs in full screen error', async ({ page }) => {
});

test('shortcut downloads logs in embeded-widget', async ({ page }) => {
test.slow(true, "Extend timeout to prevent a failure before page loads");
test.slow(true, 'Extend timeout to prevent a failure before page loads');

// The embed-widgets page and the table itself have separate loading spinners,
// causing a strict mode violation intermittently when using the goToPage helper
await gotoPage(page, 'http://localhost:4010?name=all_types');
await page.goto('http://localhost:4010?name=all_types');
await expect(
page.getByRole('progressbar', {
name: 'Loading...',
Expand Down

0 comments on commit ae544fa

Please sign in to comment.