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: '',
},
specialUrls: {
privacy: '/test/privacy',
termsOfUse: '/test/termsOfUse',
imprint: '/test/imprint',
privacy: 'https://md.example.org/test/privacy',
termsOfUse: 'https://md.example.org/test/termsOfUse',
imprint: 'https://md.example.org/test/imprint',
},
};
}

View file

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