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
This commit is contained in:
Andrew Rumble
2025-05-15 17:36:03 +01:00
committed by Copybot
parent b35b54cb80
commit 18c0634011

View File

@@ -8,5 +8,6 @@ module.exports = defineConfig({
],
setupFiles: ['./test/unit/vitest_bootstrap.mjs'],
globals: true,
isolate: false,
},
})