Files
gitea-tool-cache/jest.config.cjs
空巷一人 6e207856a2 first commit
2024-03-08 20:00:17 +08:00

13 lines
295 B
JavaScript

/** @type {import("jest").Config} */
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true,
// type": "module",
}