13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/en/configuration.html
|
|
*/
|
|
|
|
import base from './jest.config.common.ts';
|
|
|
|
module.exports = {
|
|
...base,
|
|
testMatch: [
|
|
'<rootDir>/test-federation/test/**/*.test.ts',
|
|
],
|
|
};
|