Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/e2e/image-upload.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ test.describe('Image upload', () => {
const progressModal = page.getByRole('dialog', { name: 'Image upload progress' })
await expect(progressModal).toBeVisible()

// wait to be in the middle of upload
// wait to be in the middle of the specified step
const uploadStep = page.getByTestId(`upload-step: ${state}`)
await expect(uploadStep).toHaveAttribute('data-status', 'running')
await expect(uploadStep).toHaveAttribute('data-status', 'running', { timeout: 10000 })

// form is disabled and semi-hidden
// await expectNotVisible(page, ['role=textbox[name="Name"]'])
Expand Down
Loading