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 2720e14 commit 4004826Copy full SHA for 4004826
test/e2e/image-upload.e2e.ts
@@ -139,9 +139,9 @@ test.describe('Image upload', () => {
139
const progressModal = page.getByRole('dialog', { name: 'Image upload progress' })
140
await expect(progressModal).toBeVisible()
141
142
- // wait to be in the middle of upload
+ // wait to be in the middle of the specified step
143
const uploadStep = page.getByTestId(`upload-step: ${state}`)
144
- await expect(uploadStep).toHaveAttribute('data-status', 'running')
+ await expect(uploadStep).toHaveAttribute('data-status', 'running', { timeout: 10000 })
145
146
// form is disabled and semi-hidden
147
// await expectNotVisible(page, ['role=textbox[name="Name"]'])
0 commit comments