feat: complete phase 2 UX improvements
CI and Deploy / test (push) Successful in 2m42s
CI and Deploy / deploy (push) Failing after 9s

This commit is contained in:
cesnimda
2026-07-30 21:35:52 +02:00
parent 173187dcbb
commit 56fed05d70
26 changed files with 1979 additions and 12283 deletions
+18
View File
@@ -0,0 +1,18 @@
module.exports = {
testEnvironment: "jsdom",
roots: ["<rootDir>/src"],
setupFilesAfterEnv: ["<rootDir>/src/setupTests.ts"],
transform: {
"^.+\.[jt]sx?$": ["babel-jest", {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
["@babel/preset-react", { runtime: "automatic" }],
["@babel/preset-typescript", { allExtensions: true, isTSX: true }],
],
}],
},
moduleNameMapper: {
"\.(css|less|scss|sass)$": "identity-obj-proxy",
"\.(gif|ttf|eot|svg|png|jpg|jpeg|webp)$": "<rootDir>/test/fileMock.js",
},
};