1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-23 14:46:44 +09:00
cherrypick/packages/backend/jest.config.unit.cjs
2024-08-28 16:07:38 +09:00

15 lines
303 B
JavaScript

/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/en/configuration.html
*/
const base = require('./jest.config.cjs');
module.exports = {
...base,
testMatch: [
'<rootDir>/test/unit/**/*.ts',
'<rootDir>/src/**/*.test.ts',
],
};