mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
import type { Config } from '@jest/types';
|
|
|
|
export const baseJestConfig: Config.InitialOptions = {
|
|
'preset': 'ts-jest',
|
|
'clearMocks': true,
|
|
'coverageDirectory': 'coverage',
|
|
'testMatch': [
|
|
'<rootDir>/tests/**/*.test.(ts|tsx)'
|
|
],
|
|
'setupFiles': [
|
|
'<rootDir>/tests/setupTests.ts'
|
|
]
|
|
}
|