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/ce85a14b110fa5a553ff351c8c61c5fdb45c35bc/apps/api/jest.config.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/apps/api/jest.config.ts

19 lines
363 B

/* eslint-disable */
export default {
displayName: 'api',
globals: {},
transform: {
'^.+\\.[tj]s$': [
'ts-jest',
{
tsconfig: '<rootDir>/tsconfig.spec.json'
}
]
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/apps/api',
testEnvironment: 'node',
preset: '../../jest.preset.js'
};