(path, query?: any)
| 17 | let app |
| 18 | |
| 19 | async function get$(path, query?: any) { |
| 20 | const html = await renderViaHTTP(appPort, path, query) |
| 21 | return cheerio.load(html) |
| 22 | } |
| 23 | |
| 24 | function runTests() { |
| 25 | describe('default behavior', () => { |
no test coverage detected