From 434e2013e46d0795fa0341986e62950ace77178c Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 31 Mar 2023 10:06:26 +0100 Subject: [PATCH] test: skip bundle size test in ecosystem-ci suites --- test/bundle.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bundle.test.ts b/test/bundle.test.ts index e1d60b24ea..949419b2f4 100644 --- a/test/bundle.test.ts +++ b/test/bundle.test.ts @@ -6,7 +6,7 @@ import { globby } from 'globby' import { join } from 'pathe' import { isWindows } from 'std-env' -describe.skipIf(isWindows)('minimal nuxt application', () => { +describe.skipIf(isWindows || process.env.ECOSYSTEM_CI)('minimal nuxt application', () => { const rootDir = fileURLToPath(new URL('./fixtures/minimal', import.meta.url)) const publicDir = join(rootDir, '.output/public') const serverDir = join(rootDir, '.output/server')