fix: Correct intentionally broken test case

This commit is contained in:
courtmanr@gmail.com
2025-04-30 16:37:36 +01:00
parent ba8b4c3857
commit 44aa0d7e0c
+1 -1
View File
@@ -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');
});