Skip to content

Commit 74d2f61

Browse files
attempt to fix flakey dashboard test by waiting longer (matching other tests in this file)
1 parent 74007b1 commit 74d2f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/tests/e2e/features/dashboard.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ test.describe('Dashboard', { tag: ['@dashboard'] }, () => {
228228

229229
// Verify chart is still visible (validates that the change worked)
230230
const chartContainers = dashboardPage.getChartContainers();
231-
await expect(chartContainers).toHaveCount(1);
231+
await expect(chartContainers).toHaveCount(1, { timeout: 10000 });
232232
});
233233
},
234234
);

0 commit comments

Comments
 (0)