Skip to content

Commit

Permalink
worked on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LiveDuo committed Nov 5, 2023
1 parent 0ad6672 commit 6858b80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/build-react/build.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { test, expect } from '@playwright/test'
test('should show the production version', async ({ page }) => {
await page.goto('/')
await expect(page).toHaveURL('/')
await expect(page.locator('.page-container')).toBeVisible()
await expect(page.locator('#page')).toBeVisible()
})
2 changes: 1 addition & 1 deletion e2e/build/build.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { test, expect } from '@playwright/test'
test('should show the production version', async ({ page }) => {
await page.goto('/')
await expect(page).toHaveURL('/')
await expect(page.locator('.page-container')).toBeVisible()
await expect(page.locator('#page')).toBeVisible()
})

0 comments on commit 6858b80

Please sign in to comment.