mirror of
https://github.com/directus/directus.git
synced 2026-01-28 07:48:04 -05:00
* Fix typescript errors in shared package * Hooks for adding custom CLI commands * Add CLI hooks to documentation
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
const base = require('../jest.config.js');
|
|
|
|
require('dotenv').config();
|
|
|
|
module.exports = {
|
|
...base,
|
|
roots: ['<rootDir>/src'],
|
|
verbose: true,
|
|
setupFiles: ['dotenv/config'],
|
|
testURL: process.env.TEST_URL || 'http://localhost',
|
|
collectCoverageFrom: ['src/**/*.ts'],
|
|
};
|