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

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

    response.assertStatus(200)
    response.assertTextIncludes('Terms of Service')
  })
})