Skip to content

Commit

Permalink
fix failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo committed Jul 16, 2024
1 parent da919fe commit f99b519
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions e2e/client/playwright/multiedit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ test.describe('Multiedit', async () => {

await monitoring.executeMultiAction(['test sports story', 'story 2'], 'Multi-edit');

await page
.locator(s('multiedit-screen', 'multiedit-article=test sports story', 'field--headline'))
.getByRole('textbox')
.clear();
await page
.locator(s('multiedit-screen', 'multiedit-article=test sports story', 'field--headline'))
.getByRole('textbox')
Expand All @@ -22,6 +26,10 @@ test.describe('Multiedit', async () => {
.getByRole('button', {name: 'save'})
.click();

await page
.locator(s('multiedit-screen', 'multiedit-article=story 2', 'field--headline'))
.getByRole('textbox')
.clear();
await page
.locator(s('multiedit-screen', 'multiedit-article=story 2', 'field--headline'))
.getByRole('textbox')
Expand Down

0 comments on commit f99b519

Please sign in to comment.