mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 09:02:03 +00:00
fix test
This commit is contained in:
parent
b5ec8f643a
commit
50255cb5c1
@ -1582,7 +1582,7 @@ describe('nested suspense', () => {
|
|||||||
const first = start.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
const first = start.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
||||||
const last = nav.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
const last = nav.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
||||||
|
|
||||||
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('page:loading:end') && !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
||||||
// [first load] from parent
|
// [first load] from parent
|
||||||
`[${first.parentType}]`,
|
`[${first.parentType}]`,
|
||||||
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
||||||
@ -1624,7 +1624,7 @@ describe('nested suspense', () => {
|
|||||||
|
|
||||||
await page.waitForFunction(path => window.useNuxtApp?.()._route.fullPath === path, nav)
|
await page.waitForFunction(path => window.useNuxtApp?.()._route.fullPath === path, nav)
|
||||||
|
|
||||||
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('page:loading:end') && !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
||||||
// [first load] from parent
|
// [first load] from parent
|
||||||
`[${first.parentType}]`,
|
`[${first.parentType}]`,
|
||||||
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
||||||
@ -1660,7 +1660,7 @@ describe('nested suspense', () => {
|
|||||||
const first = start.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\//)!.groups!
|
const first = start.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\//)!.groups!
|
||||||
const last = nav.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
const last = nav.match(/\/suspense\/(?<parentType>a?sync)-(?<parentNum>\d)\/(?<childType>a?sync)-(?<childNum>\d)\//)!.groups!
|
||||||
|
|
||||||
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
expect(consoleLogs.map(l => l.text).filter(i => !i.includes('page:loading:end') && !i.includes('[vite]') && !i.includes('<Suspense> is an experimental feature')).sort()).toEqual([
|
||||||
// [first load] from parent
|
// [first load] from parent
|
||||||
`[${first.parentType}]`,
|
`[${first.parentType}]`,
|
||||||
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
...first.parentType === 'async' ? ['[async] running async data'] : [],
|
||||||
|
Loading…
Reference in New Issue
Block a user