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

11 lines
201 B
JavaScript
Raw Permalink 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-23 10:04:03 +02:00
testMatch: ['<rootDir>/**/*.test.ts'],
displayName: 'Core utils',
};