mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-22 11:22:43 +00:00
chore: remove comment
This commit is contained in:
parent
7ac69b6103
commit
0651291f77
@ -7,9 +7,11 @@ const isWebpack =
|
||||
process.env.TEST_BUILDER === 'webpack' ||
|
||||
process.env.TEST_BUILDER === 'rspack'
|
||||
|
||||
const isDev = process.env.TEST_ENV === 'dev'
|
||||
|
||||
await setup({
|
||||
rootDir: fileURLToPath(new URL('../fixtures/spa-loader', import.meta.url)),
|
||||
dev: process.env.TEST_ENV === 'dev',
|
||||
dev: isDev,
|
||||
server: true,
|
||||
browser: true,
|
||||
setupTimeout: (isWindows ? 360 : 120) * 1000,
|
||||
@ -30,27 +32,7 @@ describe('spaLoadingTemplateLocation flag is set to `within`', () => {
|
||||
)
|
||||
})
|
||||
|
||||
/**
|
||||
* This test is skipped in dev mode because it not working
|
||||
* possible fix is set timeout to 1000
|
||||
* ```
|
||||
* const browser = await getBrowser()
|
||||
* const page = await browser.newPage({})
|
||||
* await page.goto(url('/spa'), { waitUntil: 'domcontentloaded' })
|
||||
*
|
||||
* const loader = page.getByTestId('loader')
|
||||
* if (process.env.TEST_ENV === 'dev') {
|
||||
* await page.waitForTimeout(1000)
|
||||
* }
|
||||
* expect(await loader.isHidden()).toBeTruthy()
|
||||
*
|
||||
* await page.close()
|
||||
*}, 60_000)
|
||||
*```
|
||||
*/
|
||||
it.skipIf(process.env.TEST_ENV === 'dev')(
|
||||
'spa-loader does not appear while the app is mounting',
|
||||
async () => {
|
||||
it.skipIf(isDev)('spa-loader does not appear while the app is mounting', async () => {
|
||||
const browser = await getBrowser()
|
||||
const page = await browser.newPage({})
|
||||
await page.goto(url('/spa'), { waitUntil: 'domcontentloaded' })
|
||||
|
Loading…
Reference in New Issue
Block a user