We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891d79a commit 301c504Copy full SHA for 301c504
test/e2e/bundle.test.ts
@@ -1,4 +1,5 @@
1
import { join } from 'node:path'
2
+import process from 'node:process'
3
import { fileURLToPath } from 'node:url'
4
import { promises as fsp } from 'node:fs'
5
import { mkdir, writeFile } from 'node:fs/promises'
@@ -7,7 +8,7 @@ import type { NuxtConfig } from '@nuxt/schema'
7
8
import { describe, it, expect } from 'vitest'
9
import { glob } from 'tinyglobby'
10
-describe('nuxt image bundle size', () => {
11
+describe.skipIf(process.env.ECOSYSTEM_CI)('nuxt image bundle size', () => {
12
it('should match snapshot', { timeout: 120_000 }, async () => {
13
const rootDir = fileURLToPath(new URL('../.tmp', import.meta.url))
14
await fsp.rm(rootDir, { recursive: true, force: true })
0 commit comments