]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/utils/server/clients.ts
fix typo in CONTRIBUTING.md
[github/Chocobozzz/PeerTube.git] / shared / utils / server / clients.ts
1 import * as request from 'supertest'
2 import * as urlUtil from 'url'
3
4 function getClient (url: string) {
5 const path = '/api/v1/oauth-clients/local'
6
7 return request(url)
8 .get(path)
9 .set('Host', urlUtil.parse(url).host)
10 .set('Accept', 'application/json')
11 .expect(200)
12 .expect('Content-Type', /json/)
13 }
14
15 // ---------------------------------------------------------------------------
16
17 export {
18 getClient
19 }