relay/jest.config.js

11 lines
227 B
JavaScript

/** @type {import('ts-jest').JestConfigWithTsJest} **/
module.exports = {
testEnvironment: "node",
transform: {
"^.+\.tsx?$": ["ts-jest",{}],
},
testPathIgnorePatterns: [
"node_modules/",
"generated/"
]
};