mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
setupFilesAfterEnv: ['<rootDir>/../jest.setup.ts'],
|
|
setupFiles: ['dotenv/config'],
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
verbose: true,
|
|
rootDir: './src',
|
|
testMatch: ['**/__tests__/*.test.ts?(x)'],
|
|
testTimeout: 30000,
|
|
moduleNameMapper: {
|
|
'@/(.*)$': '<rootDir>/$1',
|
|
},
|
|
};
|