tethys.backend/tests/functional/hello_world.spec.ts
Arno Kaimbacher 578c4180f4
Some checks are pending
CI Pipeline / japa-tests (push) Has started running
- add test to ci pipeline ci.yml
2023-05-09 14:43:16 +02:00

9 lines
243 B
TypeScript

import { test } from '@japa/runner';
test('display welcome page', async ({ client }) => {
const response = await client.get('/');
response.assertStatus(200);
response.assertTextIncludes('<h1 class="title"> It Works! </h1>');
});