test: fix URLs in mock config

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2022-06-19 22:10:29 +02:00 committed by Yannick Bungers
parent 4720d7c418
commit 7012f807b8
2 changed files with 5 additions and 5 deletions

View file

@ -15,9 +15,9 @@ export function createDefaultMockCustomizationConfig(): CustomizationConfig {
customLogo: '', customLogo: '',
}, },
specialUrls: { specialUrls: {
privacy: '/test/privacy', privacy: 'https://md.example.org/test/privacy',
termsOfUse: '/test/termsOfUse', termsOfUse: 'https://md.example.org/test/termsOfUse',
imprint: '/test/imprint', imprint: 'https://md.example.org/test/imprint',
}, },
}; };
} }

View file

@ -10,8 +10,8 @@ import { ExternalServicesConfig } from '../external-services.config';
export function createDefaultMockExternalServicesConfig(): ExternalServicesConfig { export function createDefaultMockExternalServicesConfig(): ExternalServicesConfig {
return { return {
plantUmlServer: 'plantuml.example.com', plantUmlServer: 'https://plantuml.example.com',
imageProxy: 'imageProxy.example.com', imageProxy: 'https://imageProxy.example.com',
}; };
} }