chore: reorder options object

This commit is contained in:
Daniel Roe 2025-02-20 13:19:50 +00:00
parent cbe38cf52c
commit 11e6b8398c
No known key found for this signature in database
GPG Key ID: CBC814C393D93268

View File

@ -145,7 +145,7 @@ if (process.env.TEST_ENV !== 'built' && !isWindows) {
await page.close()
})
it.skipIf(isWebpack)('should HMR routes', async () => {
it.skipIf(isWebpack)('should HMR routes', { timeout: 60_000 }, async () => {
const { page, pageErrors, consoleLogs } = await renderPage('/routes')
await fsp.writeFile(join(fixturePath, 'pages/routes/non-existent.vue'), `<template><div data-testid="contents">A new route!</div></template>`)
@ -165,7 +165,7 @@ if (process.env.TEST_ENV !== 'built' && !isWindows) {
expect(pageErrors).toEqual([])
await page.close()
}, { timeout: 60_000 })
})
})
} else {
describe.skip('hmr', () => {})