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

15 lines
333 B

/* eslint-disable */
export default {
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.js'
};