mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-11-22 21:57:58 +01:00
14 lines
290 B
JavaScript
14 lines
290 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-federation/test/**/*.test.ts',
|
||
|
],
|
||
|
};
|