blob: aa5992936b423e919ff6723dd689db0298ed3b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* 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",
],
};
|