debian-image-builder-frontend/src/test/.eslintrc
regexowl da16a42128 Migrate from Jest to Vitest
This migrates our tests from using the Jest testing framework to Vitest.
2024-07-16 16:55:31 +02:00

18 lines
315 B
Text

{
"env": {
"es6": true
},
"plugins": [
"testing-library",
"jest-dom"
],
"rules": {
"react/display-name": "off",
"react/prop-types": "off",
"testing-library/no-debugging-utils": "error"
},
"extends": [
"plugin:testing-library/react",
"plugin:jest-dom/recommended"
]
}