blob: fae187bc23f37f7d5317a17dac057058bfc8ae95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* 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-federation/test/**/*.test.ts',
],
};
|