diff --git a/test/basic.ssr.test.js b/test/basic.ssr.test.js index 11e877f038..de32607100 100644 --- a/test/basic.ssr.test.js +++ b/test/basic.ssr.test.js @@ -137,7 +137,10 @@ test('/redirect', async t => { }) test('/redirect -> check redirected source', async t => { + // there are no transition properties in jsdom, ignore the error log + await interceptError() const window = await nuxt.renderAndGetWindow(url('/redirect')) + release() const html = window.document.body.innerHTML t.true(html.includes('

Index page

')) })