Skip to content

Commit

Permalink
test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kremalicious committed Oct 3, 2023
1 parent a135103 commit 4422be2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/e2e/404.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { test, expect } from '@playwright/test'
test.describe.configure({ mode: 'parallel' })

test.beforeEach(async ({ page }) => {
await page.goto('/404')
await page.goto('/404/')
})

test('matches screenshot', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/photos.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test'

test.beforeEach(async ({ page }) => {
await page.goto('/photos')
await page.goto('/photos/')
})

test('meta is correct', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/post.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const postSlug = 'gatsby-redirect-from'
const canonical = `${siteConfig.siteUrl}/${postSlug}`

test.beforeEach(async ({ page }) => {
await page.goto(`/${postSlug}`)
await page.goto(`/${postSlug}/`)
})

test('meta is correct', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/thanks.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test'

test.beforeEach(async ({ page }) => {
await page.goto(`/thanks`)
await page.goto(`/thanks/`)
})

test('meta is correct', async ({ page }) => {
Expand Down

1 comment on commit 4422be2

@vercel
Copy link

@vercel vercel bot commented on 4422be2 Oct 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

blog – ./

kremalicious.vercel.app
blog-git-main-kremalicious.vercel.app
blog-kremalicious.vercel.app

Please sign in to comment.