chore: replace karma with jest

This commit is contained in:
Frank Strieter
2022-03-22 14:33:00 +01:00
parent 863258f23d
commit f6a9d5b038
9 changed files with 3794 additions and 1264 deletions

8
src-ui/jest.config.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
moduleNameMapper: {
"@core/(.*)": "<rootDir>/src/app/core/$1",
},
preset: "jest-preset-angular",
setupFilesAfterEnv: ["<rootDir>/setup-jest.ts"],
testPathIgnorePatterns: ["/node_modules/", "/cypress/"],
};