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 (#25536)
This commit is contained in:
parent
d7226f5ad0
commit
f3c1c3e381
@ -591,7 +591,8 @@ describe('nuxt links', () => {
|
||||
await page.close()
|
||||
})
|
||||
|
||||
it('expect scroll to top on routes with same component', async () => {
|
||||
it('expect scroll to top on routes with same component',
|
||||
async () => {
|
||||
// #22402
|
||||
const page = await createPage('/big-page-1', {
|
||||
viewport: {
|
||||
@ -613,7 +614,10 @@ describe('nuxt links', () => {
|
||||
await page.waitForFunction(path => window.useNuxtApp?.()._route.fullPath === path, `/big-page-1`)
|
||||
expect(await page.evaluate(() => window.scrollY)).toBe(0)
|
||||
await page.close()
|
||||
})
|
||||
},
|
||||
// Flaky when run on windows + webpack
|
||||
{ retry: isWebpack && isWindows ? 10 : 0 }
|
||||
)
|
||||
|
||||
it('expect scroll to top on nested pages', async () => {
|
||||
// #20523
|
||||
|
Loading…
Reference in New Issue
Block a user