From 11e6b8398ca1bdff9b6be905e678d7e466aa038e Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 20 Feb 2025 13:19:50 +0000 Subject: [PATCH] chore: reorder options object --- test/hmr.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hmr.test.ts b/test/hmr.test.ts index 912d0a0be4..8e95780756 100644 --- a/test/hmr.test.ts +++ b/test/hmr.test.ts @@ -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'), ``) @@ -165,7 +165,7 @@ if (process.env.TEST_ENV !== 'built' && !isWindows) { expect(pageErrors).toEqual([]) await page.close() - }, { timeout: 60_000 }) + }) }) } else { describe.skip('hmr', () => {})