()
| 14 | let app |
| 15 | |
| 16 | function runTests() { |
| 17 | it('should serve a page correctly', async () => { |
| 18 | const html = await renderViaHTTP(appPort, '/') |
| 19 | expect(html).toContain('Hello World') |
| 20 | }) |
| 21 | } |
| 22 | |
| 23 | // This test is skipped in Turbopack because it uses a custom babelrc. |
| 24 | ;(process.env.IS_TURBOPACK_TEST ? describe.skip : describe)( |
no test coverage detected