Log_service/tests/functional/hello_world.spec.ts

9 lines
214 B
TypeScript

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