mirror of
https://github.com/cachix/cachix-action.git
synced 2025-06-11 02:13:32 +09:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ["js", "ts"],
|
|
testEnvironment: "node",
|
|
testMatch: ["**/*.test.ts"],
|
|
testRunner: "jest-circus/runner",
|
|
transform: {
|
|
"^.+\\.ts$": "ts-jest",
|
|
},
|
|
verbose: true,
|
|
};
|