mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 05:17:07 +00:00
16 lines
380 B
TypeScript
16 lines
380 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-lib",
|
|
testTimeout: 60000,
|
|
setupFiles: ["<rootDir>/spec/setup-jest.js"],
|
|
};
|
|
|
|
export default config;
|