()
| 55 | } |
| 56 | |
| 57 | function runCommonTests() { |
| 58 | // See https://github.com/vercel/next.js/issues/18437 |
| 59 | it('should not have a race condition with a click handler', async () => { |
| 60 | const browser = await webdriver(appPort, '/click-away-race-condition') |
| 61 | await browser.elementByCss('#click-me').click() |
| 62 | await browser.waitForElementByCss('#the-menu') |
| 63 | }) |
| 64 | } |
| 65 | |
| 66 | describe('Invalid hrefs', () => { |
| 67 | ;(process.env.TURBOPACK_BUILD ? describe.skip : describe)( |
no test coverage detected