Files
redstone-node/jest.config.js
2022-07-07 11:28:25 +02:00

12 lines
338 B
JavaScript

module.exports = {
roots: ["<rootDir>/"],
testMatch: ["**/test/**/?(*.)+(spec).+(ts)"],
transform: {
"^.+\\.(ts|js)$": "ts-jest",
},
testEnvironment: "node",
testRunner: "jest-circus/runner",
transformIgnorePatterns: ["<rootDir>/node_modules/(?!@assemblyscript/.*)"],
setupFiles: ["<rootDir>/.jest/setEnvVars.js"],
};