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

13 lines
318 B

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