blob: e058adf8555ee4aa93761d1f57c97221521fb8de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import type { Config } from "@jest/types";
const config: Config.InitialOptions = {
verbose: true,
testMatch: ["**/test/**/*.test.+(ts|tsx|js|jsx)"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
setupFiles: ["./test/main.ts"],
};
export default config;
|