mirror of
https://github.com/alexgo-io/redstone-node.git
synced 2026-01-12 22:43:31 +08:00
12 lines
338 B
JavaScript
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"],
|
|
};
|