Skip to content

Instantly share code, notes, and snippets.

@LauraBeatris
Last active March 10, 2022 02:25
Show Gist options
  • Save LauraBeatris/fb2cb4f3a23860018120df39d3c394eb to your computer and use it in GitHub Desktop.
Save LauraBeatris/fb2cb4f3a23860018120df39d3c394eb to your computer and use it in GitHub Desktop.
Jest Configuration with Root Import
{
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
],
"moduleNameMapper": {
"^~/(.*)": "<rootDir>/src/$1"
},
"setupFilesAfterEnv": [
"@testing-library/react/cleanup-after-each",
"@testing-library/jest-dom/extend-expect"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment