(response: Response)
| 43 | } |
| 44 | |
| 45 | export function assertJSON(response: Response) { |
| 46 | assert.equal(response.headers.get('content-type'), 'application/json; charset=utf-8') |
| 47 | } |
| 48 | |
| 49 | export function assertCache(response: Response, maxge: number) { |
| 50 | assert(response.headers.has('cache-control')) |
no test coverage detected