Skip to content

Commit 301c504

Browse files
committed
test: skip bundle size tests in ecosystem ci
1 parent 891d79a commit 301c504

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/bundle.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { join } from 'node:path'
2+
import process from 'node:process'
23
import { fileURLToPath } from 'node:url'
34
import { promises as fsp } from 'node:fs'
45
import { mkdir, writeFile } from 'node:fs/promises'
@@ -7,7 +8,7 @@ import type { NuxtConfig } from '@nuxt/schema'
78
import { describe, it, expect } from 'vitest'
89
import { glob } from 'tinyglobby'
910

10-
describe('nuxt image bundle size', () => {
11+
describe.skipIf(process.env.ECOSYSTEM_CI)('nuxt image bundle size', () => {
1112
it('should match snapshot', { timeout: 120_000 }, async () => {
1213
const rootDir = fileURLToPath(new URL('../.tmp', import.meta.url))
1314
await fsp.rm(rootDir, { recursive: true, force: true })

0 commit comments

Comments
 (0)