8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
roots: ["<rootDir>/src"],
|
|
testMatch: ["**/*.test.ts", "**/*.spec.ts"],
|
|
};
|