11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const config: Config = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/src/__tests__/**/*.test.ts'],
|
|
clearMocks: true,
|
|
};
|
|
|
|
export default config;
|