strapi/packages/core/utils/jest.config.js

11 lines
205 B
JavaScript
Raw Normal View History

'use strict';
module.exports = {
preset: '../../../jest-preset.unit.js',
2023-04-27 23:18:48 +02:00
transform: {
'^.+\\.ts$': ['@swc/jest'],
},
2023-06-06 10:58:36 +02:00
testMatch: ['<rootDir>/**/*.test.(j|t)s'],
displayName: 'Core utils',
};