mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
11 lines
392 B
JavaScript
11 lines
392 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ["js", "ts"],
|
|
testMatch: ["**/*.test.ts"],
|
|
transform: { ".(t|j)s$": "babel-jest" },
|
|
transformIgnorePatterns: ["/node_modules/(?!node-fetch|fetch-blob).+\\.js$"],
|
|
moduleNameMapper: {
|
|
"formdata-node/file-from-path": "<rootDir>node_modules/formdata-node/lib/cjs/fileFromPath"
|
|
},
|
|
verbose: true
|
|
};
|