hello_world.spec.ts 220 B

12345678
  1. import { test } from '@japa/runner'
  2. test('display welcome page', async ({ client }) => {
  3. const response = await client.get('/')
  4. response.assertStatus(200)
  5. response.assertBodyContains({ hello: 'world' })
  6. })