Convert real world script to typescript
[oweals/peertube.git] / server / tests / utils / request-schedulers.ts
1 import * as request from 'supertest'
2
3 import { ServerInfo } from '../utils'
4
5 function getRequestsStats (server: ServerInfo) {
6   const path = '/api/v1/request-schedulers/stats'
7
8   return request(server.url)
9           .get(path)
10           .set('Accept', 'application/json')
11           .set('Authorization', 'Bearer ' + server.accessToken)
12           .expect(200)
13           .expect('Content-Type', /json/)
14 }
15
16 // ---------------------------------------------------------------------------
17
18 export {
19   getRequestsStats
20 }