aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/static-pages/home.spec.ts
blob: 5054e0532b73d1f99fb099fd328a7415f51768f6 (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');
  });
});