From 9a87f662d422deb33650ef9fb5ca7a6fa13d3fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Wed, 24 Apr 2024 11:53:44 +0200 Subject: [PATCH] Deactivate vitest globals (expect, describe, test, ...) With importing all test functions the globals are unnecessary and should not be activated anymore. --- vitest.projects.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/vitest.projects.ts b/vitest.projects.ts index cc0843168b..b156f20073 100644 --- a/vitest.projects.ts +++ b/vitest.projects.ts @@ -6,7 +6,6 @@ export default defineWorkspace([ test: { name: 'web', environment: 'jsdom', - globals: true, setupFiles: './src/web/setupTests.js', include: [ 'src/web/**/*.{test,spec}.?(c|m)[jt]s?(x)',