chore: reorder options object

This commit is contained in:
Daniel Roe 2025-02-20 13:19:50 +00:00
parent 7f82988b5a
commit e415a56633
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B

View File

@ -146,7 +146,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>`)
@ -166,7 +166,7 @@ if (process.env.TEST_ENV !== 'built' && !isWindows) {
expect(pageErrors).toEqual([])
await page.close()
}, { timeout: 60_000 })
})
})
} else {
describe.skip('hmr', () => {})