mirror of
https://github.com/strapi/strapi.git
synced 2025-06-27 00:41:25 +00:00
19 lines
454 B
JavaScript
19 lines
454 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
displayName: 'CLI tests',
|
|
testMatch: ['**/?(*.)+(spec|test).cli.(js|ts)'],
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: ['<rootDir>/../../../../tests/setup/jest-cli.setup.js'],
|
|
coveragePathIgnorePatterns: [
|
|
'<rootDir>/dist/',
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/out-tsc/',
|
|
'<rootDir>/test/',
|
|
],
|
|
transform: {
|
|
'^.+\\.ts$': ['@swc/jest'],
|
|
},
|
|
modulePathIgnorePatterns: ['.cache'],
|
|
};
|