mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-23 14:46:44 +09:00
15 lines
303 B
JavaScript
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',
|
|
],
|
|
};
|