mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-06 06:10:43 +02:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { test } from '@japa/runner'
|
|
|
|
test('display welcome page', async ({ client }) => {
|
|
const response = await client.get('/')
|
|
|
|
response.assertStatus(200)
|
|
response.assertTextIncludes('<h1 class="title"> It Works! </h1>')
|
|
})
|