blob: 22676bb381a3aac2ab01ac89641b52f145d98d14 (
plain) (
tree)
|
|
import * as request from 'supertest'
function getClient (url: string) {
const path = '/api/v1/clients/local'
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
// ---------------------------------------------------------------------------
export {
getClient
}
|