1
0
Fork 0
mirror of https://github.com/astral-sh/setup-uv.git synced 2025-04-11 17:48:31 -04:00
setup-uv/jest.config.js

10 lines
176 B
JavaScript
Raw Normal View History

2024-08-23 23:58:26 +02:00
module.exports = {
clearMocks: true,
2024-09-04 17:00:03 -04:00
moduleFileExtensions: ["js", "ts"],
testMatch: ["**/*.test.ts"],
2024-08-23 23:58:26 +02:00
transform: {
2024-09-04 17:00:03 -04:00
"^.+\\.ts$": "ts-jest",
2024-08-23 23:58:26 +02:00
},
2024-09-04 17:00:03 -04:00
verbose: true,
};