We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nuxt
Learn more about funding links in repositories.
Report abuse
1 parent ad306f4 commit ee040eeCopy full SHA for ee040ee
test/basic.test.ts
@@ -2933,7 +2933,7 @@ describe('lazy import components', () => {
2933
const hydratedText = 'This is mounted.'
2934
await page.locator('[data-testid=hydrate-after]', { hasText: hydratedText }).waitFor({ state: 'visible' })
2935
2936
- const hydrationLogs = consoleLogs.filter(log => log.type !== 'warn')
+ const hydrationLogs = consoleLogs.filter(log => !log.text.includes('[vite]') && !log.text.includes('<Suspense>'))
2937
expect(hydrationLogs.map(log => log.text)).toEqual([])
2938
2939
await page.close()
0 commit comments