aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/static-pages/home.spec.ts
blob: 20d02db07f264b9ce2996219016c611ee843f6ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { test } from '@japa/runner'

test.group('home page', () => {
  test('returns a 200 response', async ({ client }) => {
    const response = await client.get('/')

    response.assertStatus(200)
    response.assertTextIncludes('Go to account dashboard')
  })
})