add e2e tests for 404 pages

pull/195/head
dario-piotrowicz 2023-02-05 22:39:30 +00:00
rodzic ba0b6b9a53
commit e1ebd5235d
1 zmienionych plików z 20 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,20 @@
import { test, expect, type Page } from '@playwright/test'
async function test404Page(page: Page, url: string) {
const response = await page.goto(url)
expect(response?.status()).toEqual(404)
const NotFoundTextLocator = page.getByText("The page you are looking for isn't here.")
await expect(NotFoundTextLocator).toBeVisible()
}
test('Trying to access a non existent page should result in a 404 page', async ({ page }) => {
await test404Page(page, 'http://127.0.0.1:8788/gibberish_fytr75235dfhhlplo')
})
test('Trying to access a non existent sub-page should result in a 404 page', async ({ page }) => {
await test404Page(page, 'http://127.0.0.1:8788/explore/gibberish_fytr75235dfhhlplo')
})
test('Trying to access a non existent sub-sub-page should result in a 404 page', async ({ page }) => {
await test404Page(page, 'http://127.0.0.1:8788/explore/gibberish/fytr75235dfhhlplo')
})