Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/src/commit/c1d460cead4b33f0c9e13cbde6c9cd2b1694295a/libs/common/jest.config.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/libs/common/jest.config.ts

14 lines
314 B

module.exports = {
displayName: 'common',
globals: {
'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' }
},
transform: {
'^.+\\.[tj]sx?$': 'ts-jest'
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/libs/common',
preset: '../../jest.preset.ts'
};