perf(daemon): import install config helpers directly

This commit is contained in:
Vincent Koc
2026-04-13 19:22:41 +01:00
parent 80b1fa17bf
commit 55a3c8ea07
2 changed files with 6 additions and 2 deletions

View File

@@ -65,9 +65,12 @@ vi.mock("../../bootstrap/node-startup-env.js", () => ({
resolveNodeStartupTlsEnvironment: resolveNodeStartupTlsEnvironmentMock,
}));
vi.mock("../../config/config.js", () => ({
vi.mock("../../config/io.js", () => ({
loadConfig: loadConfigMock,
readBestEffortConfig: loadConfigMock,
}));
vi.mock("../../config/paths.js", () => ({
resolveGatewayPort: resolveGatewayPortMock,
}));