hyperdx/packages/api/jest.config.js
2023-09-12 20:08:05 -07:00

9 lines
239 B
JavaScript

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
verbose: true,
rootDir: './src',
testMatch: ['**/__tests__/*.test.ts?(x)'],
testTimeout: 30000,
};