mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
/**
|
|
* @type {import('jest').Config}
|
|
*/
|
|
const config = {
|
|
preset: '../../../jest-preset.unit.js',
|
|
displayName: 'Pack up',
|
|
collectCoverageFrom: ['src/**/*.ts'],
|
|
globalTeardown: '<rootDir>/tests/teardown.ts',
|
|
};
|
|
|
|
module.exports = config;
|