Skip to content

Commit

Permalink
Merge pull request #1182 from andrew-bierman/fix/playwright-tests-jewel
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-bierman authored Aug 23, 2024
2 parents 3caeb65 + b63a7df commit 392426a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/playwright/tests/open-pack.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test('Open pack', async ({ page }) => {
await page.getByLabel('Password').click();
await page.getByLabel('Password').fill('87654321');
await page.getByRole('button', { name: 'Sign In' }).click();
await page.getByRole('button', { name: 'Menu' }).click();
await page.getByRole('button', { name: 'Menu' }).hover();
await page.getByRole('button', { name: 'Packs' }).click();
await page.goto('https://packrat.world/packs');
await page.waitForLoadState('load');
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright/tests/pack-add-item.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test('test', async ({ page }) => {
await page.getByLabel('Password').click();
await page.getByLabel('Password').fill('12345678');
await page.getByRole('button', { name: 'Sign In' }).click();
await page.getByRole('button', { name: 'Menu' }).click();
await page.getByRole('button', { name: 'Menu' }).hover();
await page.getByRole('button', { name: ' Packs' }).click();
await page.goto('https://packrat.world/packs');
await page.getByRole('link', { name: 'Quantity field' }).click();
Expand Down

0 comments on commit 392426a

Please sign in to comment.