Skip to content

Commit

Permalink
Fix update snapshots tests (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval authored Aug 4, 2022
1 parent 501f318 commit c291ac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
test('basic test', async ({ page }) => {
await page.goto('https://playwright.dev/');
await page.locator('text=Get started').click();
await expect(page).toHaveTitle(/Getting started/);
await expect(page).toHaveTitle(/Installation | Playwright/);
});
EOF
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
test('basic test', async ({ page }) => {
await page.goto('https://playwright.dev/');
await page.locator('text=Get started').click();
await expect(page).toHaveTitle(/Getting started/);
await expect(page).toHaveTitle(/Installation | Playwright/);
});
EOF
Expand Down

0 comments on commit c291ac9

Please sign in to comment.