From 18c0634011ad80fb55acdec330670a3fa9147349 Mon Sep 17 00:00:00 2001 From: Andrew Rumble Date: Thu, 15 May 2025 17:36:03 +0100 Subject: [PATCH] Disable test isolation Isolation isn't required and it takes the setup contribution to our tests down from over 60 seconds to single figures, greatly speeding up the tests. GitOrigin-RevId: 72516e420583fa2dfcef13f2cc50b0769a100baf --- services/web/vitest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/vitest.config.js b/services/web/vitest.config.js index 3b84690447..51f4ed811f 100644 --- a/services/web/vitest.config.js +++ b/services/web/vitest.config.js @@ -8,5 +8,6 @@ module.exports = defineConfig({ ], setupFiles: ['./test/unit/vitest_bootstrap.mjs'], globals: true, + isolate: false, }, })