aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/api/static/features.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/api/static/features.spec.ts')
-rw-r--r--tests/functional/api/static/features.spec.ts24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/functional/api/static/features.spec.ts b/tests/functional/api/static/features.spec.ts
index c31e25f..a7a1e09 100644
--- a/tests/functional/api/static/features.spec.ts
+++ b/tests/functional/api/static/features.spec.ts
@@ -1,5 +1,5 @@
1import { test } from '@japa/runner' 1import { test } from '@japa/runner';
2import { apiVersion } from '../../../config.js' 2import { apiVersion } from '../../../config.js';
3 3
4const defaultResponse = { 4const defaultResponse = {
5 isServiceProxyEnabled: true, 5 isServiceProxyEnabled: true,
@@ -8,22 +8,22 @@ const defaultResponse = {
8 isSettingsWSEnabled: false, 8 isSettingsWSEnabled: false,
9 isMagicBarEnabled: true, 9 isMagicBarEnabled: true,
10 isTodosEnabled: true, 10 isTodosEnabled: true,
11} 11};
12 12
13test.group('API / Static / Features', () => { 13test.group('API / Static / Features', () => {
14 test('returns a 200 response with empty array', async ({ client }) => { 14 test('returns a 200 response with empty array', async ({ client }) => {
15 const response = await client.get(`/${apiVersion}/features`) 15 const response = await client.get(`/${apiVersion}/features`);
16 16
17 response.assertStatus(200) 17 response.assertStatus(200);
18 response.assertBody(defaultResponse) 18 response.assertBody(defaultResponse);
19 }) 19 });
20 20
21 test('returns a 200 response with expected object when calling with :mode', async ({ 21 test('returns a 200 response with expected object when calling with :mode', async ({
22 client, 22 client,
23 }) => { 23 }) => {
24 const response = await client.get(`/${apiVersion}/features/random`) 24 const response = await client.get(`/${apiVersion}/features/random`);
25 25
26 response.assertStatus(200) 26 response.assertStatus(200);
27 response.assertBody(defaultResponse) 27 response.assertBody(defaultResponse);
28 }) 28 });
29}) 29});