mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00

* Ensure connection state always explicitly states all keys, even if some are undefined. * changelog * Fix type * fix test types * Add support for E2E testing * Add CI job for e2e test * Ensure integration test only runs when regular tests complete * Add homerunner image * Disallow concurrent runs * Add concurrency to other expensive steps * changelog * Fix mq test * Cache rust deps * Drop only * Use a shared key
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;
|