aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/api/static/services.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/api/static/services.spec.ts')
-rw-r--r--tests/functional/api/static/services.spec.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/functional/api/static/services.spec.ts b/tests/functional/api/static/services.spec.ts
index 55eef37..595b8dc 100644
--- a/tests/functional/api/static/services.spec.ts
+++ b/tests/functional/api/static/services.spec.ts
@@ -1,11 +1,11 @@
1import { test } from '@japa/runner'; 1import { test } from '@japa/runner'
2import { apiVersion } from '../../../config'; 2import { apiVersion } from '../../../config.js'
3 3
4test.group('API / Static / Services', () => { 4test.group('API / Static / Services', () => {
5 test('returns a 200 response with empty array', async ({ client }) => { 5 test('returns a 200 response with empty array', async ({ client }) => {
6 const response = await client.get(`/${apiVersion}/services`); 6 const response = await client.get(`/${apiVersion}/services`)
7 7
8 response.assertStatus(200); 8 response.assertStatus(200)
9 response.assertBody([]); 9 response.assertBody([])
10 }); 10 })
11}); 11})