From 23fc11adbabcb8b77e6ce90cc802ff2a1e47752c Mon Sep 17 00:00:00 2001 From: Josh McVey Date: Thu, 6 Feb 2025 14:42:39 -0600 Subject: [PATCH] no cypress --- vitest.config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.config.mts b/vitest.config.mts index 852b020f82c..1c62bc220ca 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -15,7 +15,7 @@ export default mergeConfig( exclude: [...configDefaults.exclude, '**/node_modules/**', '**/dist/**'], setupFiles: ['./setup-vitest.mts'], coverage: { - exclude: ['**/node_modules/**', '**/dist/**', '**/__tests__/**', ...configDefaults.exclude], + exclude: ['**/node_modules/**', '**/dist/**', '**/__tests__/**', '**/cypress/**', ...configDefaults.exclude], provider: 'v8', reporter: ['text', 'json', 'html', 'lcov'], },