fe7a779ed7
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
225 B
JavaScript
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',
|
|
};
|