We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bef701 commit 09727c9Copy full SHA for 09727c9
tests/v2/images.spec.js
@@ -182,6 +182,8 @@ async function searchImages(page, expectedCount) {
182
// wait spinner disappearing
183
await expect(applyBtn.getByRole('status')).toHaveCount(0);
184
await expect(page.getByRole('row')).toHaveCount(expectedCount + 2);
185
+ // Await slim-select change events are propagated before clicking the Reset button
186
+ await new Promise((r) => setTimeout(r, 500));
187
const resetBtn = page.getByRole('button', { name: 'Reset', exact: true });
188
await resetBtn.click();
189
await expect(resetBtn).not.toBeEnabled();
0 commit comments