



























@@ -57,7 +57,7 @@ describe("projects vitest config", () => {
5757expect(createCommandsVitestConfig().test.pool).toBe("threads");
5858expect(createPluginSdkLightVitestConfig().test.pool).toBe("threads");
5959expect(createUnitFastVitestConfig().test.pool).toBe("threads");
60-expect(createContractsVitestConfig(pluginContractPatterns).test.pool).toBe("forks");
60+expect(createContractsVitestConfig(pluginContractPatterns).test.pool).toBe("threads");
6161});
62626363it("honors explicit worker caps in CI vitest lanes", () => {
@@ -93,9 +93,9 @@ describe("projects vitest config", () => {
9393});
9494});
959596-it("keeps contract shards on the non-isolated fork runner by default", () => {
96+it("keeps contract shards on the non-isolated runner by default", () => {
9797const config = createContractsVitestConfig(pluginContractPatterns);
98-expect(config.test.pool).toBe("forks");
98+expect(config.test.pool).toBe("threads");
9999expect(config.test.isolate).toBe(false);
100100expect(normalizeConfigPath(config.test.runner)).toBe("test/non-isolated-runner.ts");
101101});
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。