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/01103f3db4d254350e8696b8c5ea25fa8a129d0c/libs/common/jest.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/libs/common/jest.config.js

13 lines
313 B

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