16 lines
377 B
TypeScript
16 lines
377 B
TypeScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/configuration
|
|
*/
|
|
|
|
export default {
|
|
transform: {
|
|
'^.+\\.ts?$': 'esbuild-jest',
|
|
},
|
|
clearMocks: true,
|
|
collectCoverage: true,
|
|
coverageDirectory: 'coverage',
|
|
coverageProvider: 'v8',
|
|
testMatch: ['**/tests/unit/*.test.ts'],
|
|
};
|