Files
tower/apps/worker/jest.config.js
T
2026-05-27 15:36:52 +05:30

10 lines
225 B
JavaScript

const path = require('path');
require('dotenv').config({ path: path.resolve(__dirname, '../../.env') });
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
rootDir: 'src',
};