mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
ci: retry flaky test when running in Windows with Webpack (#25543)
This commit is contained in:
parent
e76b41786d
commit
f665434781
@ -619,7 +619,8 @@ describe('nuxt links', () => {
|
||||
{ retry: isWebpack && isWindows ? 10 : 0 }
|
||||
)
|
||||
|
||||
it('expect scroll to top on nested pages', async () => {
|
||||
it('expect scroll to top on nested pages',
|
||||
async () => {
|
||||
// #20523
|
||||
const page = await createPage('/nested/foo/test', {
|
||||
viewport: {
|
||||
@ -641,7 +642,10 @@ describe('nuxt links', () => {
|
||||
await page.waitForFunction(path => window.useNuxtApp?.()._route.fullPath === path, `/nested/foo/test`)
|
||||
expect(await page.evaluate(() => window.scrollY)).toBe(0)
|
||||
await page.close()
|
||||
})
|
||||
},
|
||||
// Flaky when run on windows + webpack
|
||||
{ retry: isWebpack && isWindows ? 10 : 0 }
|
||||
)
|
||||
})
|
||||
|
||||
describe('head tags', () => {
|
||||
|
Loading…
Reference in New Issue
Block a user