]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/utils/clients.ts
Convert real world tools to typescript
[github/Chocobozzz/PeerTube.git] / server / tests / utils / clients.ts
1 import * as request from 'supertest'
2
3 function getClient (url: string) {
4 const path = '/api/v1/oauth-clients/local'
5
6 return request(url)
7 .get(path)
8 .set('Accept', 'application/json')
9 .expect(200)
10 .expect('Content-Type', /json/)
11 }
12
13 // ---------------------------------------------------------------------------
14
15 export {
16 getClient
17 }