mirror of
https://github.com/directus/directus.git
synced 2026-01-31 09:18:22 -05:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
require('dotenv').config();
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
verbose: true,
|
|
setupFiles: ['dotenv/config'],
|
|
testURL: process.env.TEST_URL || 'http://localhost',
|
|
collectCoverageFrom: ['src/**/*.ts'],
|
|
testPathIgnorePatterns: ['dist'],
|
|
};
|