1
0
Fork 0
mirror of https://github.com/astral-sh/setup-uv.git synced 2025-04-06 23:48:49 -04:00
setup-uv/jest.config.js
Charlie Marsh 182c9c7e92
Change Prettier settings ()
## Summary

I know this is a little tedious but I'd prefer to use the same settings
as in Ruff.
2024-09-05 08:06:45 -04:00

9 lines
176 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ["js", "ts"],
testMatch: ["**/*.test.ts"],
transform: {
"^.+\\.ts$": "ts-jest",
},
verbose: true,
};