mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00
22 lines
410 B
TypeScript
22 lines
410 B
TypeScript
![]() |
/**
|
||
|
* For a detailed explanation regarding each configuration property, visit:
|
||
|
* https://jestjs.io/docs/configuration
|
||
|
*/
|
||
|
|
||
|
import type {Config} from 'jest';
|
||
|
|
||
|
const config: Config = {
|
||
|
// The root directory that Jest should scan for tests and modules within
|
||
|
rootDir: "spec",
|
||
|
testTimeout: 60000,
|
||
|
transform: {
|
||
|
'^.+\\.tsx?$': [
|
||
|
'ts-jest',
|
||
|
{
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|