aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/health.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/health.spec.ts')
-rw-r--r--tests/functional/health.spec.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/health.spec.ts b/tests/functional/health.spec.ts
index 2f7e074..50bf46c 100644
--- a/tests/functional/health.spec.ts
+++ b/tests/functional/health.spec.ts
@@ -1,13 +1,13 @@
1import { test } from '@japa/runner'; 1import { test } from '@japa/runner'
2 2
3test.group('health page', () => { 3test.group('health page', () => {
4 test('returns a 200 response', async ({ client }) => { 4 test('returns a 200 response', async ({ client }) => {
5 const response = await client.get('/health'); 5 const response = await client.get('/health')
6 6
7 response.assertStatus(200); 7 response.assertStatus(200)
8 response.assertBodyContains({ 8 response.assertBodyContains({
9 api: 'success', 9 api: 'success',
10 db: 'success', 10 db: 'success',
11 }); 11 })
12 }); 12 })
13}); 13})