* tests: add various e2e tests for MPR and measurements wip add cypress config feat: add mode and extension for testing add hp applied through search params add MPR tests apply review comments add more e2e tests update yarn lock * fix unit tests failing
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
// whiteLabelling: {},
|
|
extensions: [],
|
|
modes: [],
|
|
showStudyList: true,
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
omitQuotationForMultipartRequest: true,
|
|
showWarningMessageForCrossOrigin: true,
|
|
showCPUFallbackMessage: true,
|
|
showLoadingIndicator: true,
|
|
// filterQueryParam: false,
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'http://localhost:5985',
|
|
qidoRoot: 'http://localhost:5985',
|
|
wadoRoot: 'http://localhost:5985',
|
|
qidoSupportsIncludeField: true,
|
|
supportsReject: true,
|
|
imageRendering: 'wadouri',
|
|
thumbnailRendering: 'wadouri',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: false,
|
|
},
|
|
},
|
|
],
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|