Files
directus/packages/sdk/jest.config.js
WoLfulus 3db8b9a1b3 Updated SDK docs and typing fixes (#4787)
* typing fixes

* docs update

* ignore compiled test dir

* use top level await syntax
2021-03-31 14:43:29 -04:00

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'],
};