소스 검색

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
Andrew Rumble 1 년 전
부모
커밋
18c0634011
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      services/web/vitest.config.js

+ 1 - 0
services/web/vitest.config.js

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