Setting up Unit Testing using jest

This commit is contained in:
SinusFox
2024-09-24 17:39:06 +02:00
parent 9193effdfa
commit 85715d439d
6 changed files with 4653 additions and 2 deletions
+8 -1
View File
@@ -1,3 +1,10 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"prefer-const": "off"
}
}