12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
import {Config} from "jest";
|
|
|
|
// Sync object
|
|
const config: Config = {
|
|
verbose: true,
|
|
testMatch: ["**/test/**/*.ts"],
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest",
|
|
},
|
|
};
|
|
export default config;
|