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'); });