1
0
Fork 0
peertube/server/tests/utils/config.ts
2017-09-04 21:30:18 +02:00

17 lines
365 B
TypeScript

import * as request from 'supertest'
function getConfig (url: string) {
const path = '/api/v1/config'
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getConfig
}