From dea59deceb609a194f8daa41b6fcbda046c22101 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Thu, 2 May 2024 11:38:35 +0200 Subject: [PATCH] fix: use ecosystem specific command for Vitest tests (#303) --- tests/vitest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vitest.ts b/tests/vitest.ts index a228bcdd..7f0d52ed 100755 --- a/tests/vitest.ts +++ b/tests/vitest.ts @@ -6,7 +6,7 @@ export async function test(options: RunOptions) { ...options, repo: 'vitest-dev/vitest', build: 'build', - test: ['test:ci', 'test:examples'], + test: ['test:ecosystem-ci', 'test:examples'], beforeTest: 'pnpm playwright install chromium', }) }