Skip to content

Commit dbe04f5

Browse files
committed
Increase timeout
1 parent 4810baf commit dbe04f5

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

e2e/tests/functional/plugins/styling/conditionWidget.e2e.spec.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,9 @@ test.describe('A Condition Widget', () => {
176176

177177
await expect(page.getByLabel('Browse bar object name')).toHaveText('Test Condition Widget');
178178
const label = page.getByLabel('Test Condition Widget Object View');
179-
await expect(label.getByText('> 0')).toBeVisible();
180-
await expect(label.getByText('< 0')).toBeVisible();
181-
await expect(label.getByText('STALE')).toBeVisible();
179+
//TODO Will fix these assertions in a followup
180+
await expect(label.getByText('> 0')).toBeVisible({ timeout: 10_000 });
181+
await expect(label.getByText('< 0')).toBeVisible({ timeout: 10_000 });
182+
await expect(label.getByText('STALE')).toBeVisible({ timeout: 10_000 });
182183
});
183184
});

0 commit comments

Comments
 (0)