From 44aa0d7e0cfd9834793eba43def785637f732bf2 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 30 Apr 2025 16:37:36 +0100 Subject: [PATCH] fix: Correct intentionally broken test case --- server/tests/config.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tests/config.test.js b/server/tests/config.test.js index 14104dc19..ce43428f2 100644 --- a/server/tests/config.test.js +++ b/server/tests/config.test.js @@ -71,7 +71,7 @@ describe('Configuration Loading (loadConfiguration)', () => { }); const { config, errors } = loadConfig(); expect(errors).toHaveLength(0); - expect(config.pve.host).toBe('pve.example.BROKEN'); // <-- INTENTIONALLY BROKEN + expect(config.pve.host).toBe('pve.example.com'); expect(config.pve.tokenId).toBe('user@pam!pve'); expect(config.pve.tokenSecret).toBe('secretpve'); });