Skip to content

Commit

Permalink
fix: model uncontained flaky in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
roar-larsen committed Nov 29, 2023
1 parent 2e73259 commit c0c5604
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ test('Model uncontained complex attribute', async ({ page }) => {
await dialog.getByRole('button', { name: 'Barbossa' }).click()
await dialog.getByRole('button', { name: 'Select', exact: true }).click()
await expect(dialog).not.toBeVisible()

await page.getByRole('button', { name: 'Submit', exact: true }).click()
await expect(page.getByRole('alert')).toHaveText(['Document updated'])
await page.getByRole('button', { name: 'Open in tab', exact: true }).click()
await expect(page.getByRole('tab', { name: 'captain' })).toBeVisible()
await expect(page.getByRole('code')).toBeVisible()
Expand Down

0 comments on commit c0c5604

Please sign in to comment.