aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/utils')
-rw-r--r--server/tests/utils/server/config.ts22
1 files changed, 16 insertions, 6 deletions
diff --git a/server/tests/utils/server/config.ts b/server/tests/utils/server/config.ts
index b6905757a..e5411117a 100644
--- a/server/tests/utils/server/config.ts
+++ b/server/tests/utils/server/config.ts
@@ -1,15 +1,24 @@
1import * as request from 'supertest'
2import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../' 1import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../'
3import { CustomConfig } from '../../../../shared/models/config/custom-config.model' 2import { CustomConfig } from '../../../../shared/models/config/custom-config.model'
4 3
5function getConfig (url: string) { 4function getConfig (url: string) {
6 const path = '/api/v1/config' 5 const path = '/api/v1/config'
7 6
8 return request(url) 7 return makeGetRequest({
9 .get(path) 8 url,
10 .set('Accept', 'application/json') 9 path,
11 .expect(200) 10 statusCodeExpected: 200
12 .expect('Content-Type', /json/) 11 })
12}
13
14function getAbout (url: string) {
15 const path = '/api/v1/config/about'
16
17 return makeGetRequest({
18 url,
19 path,
20 statusCodeExpected: 200
21 })
13} 22}
14 23
15function getCustomConfig (url: string, token: string, statusCodeExpected = 200) { 24function getCustomConfig (url: string, token: string, statusCodeExpected = 200) {
@@ -52,5 +61,6 @@ export {
52 getConfig, 61 getConfig,
53 getCustomConfig, 62 getCustomConfig,
54 updateCustomConfig, 63 updateCustomConfig,
64 getAbout,
55 deleteCustomConfig 65 deleteCustomConfig
56} 66}