'use strict'; module.exports = { displayName: 'CLI tests', testMatch: ['**/?(*.)+(spec|test).cli.(js|ts)'], testEnvironment: 'node', setupFilesAfterEnv: ['/../../../../tests/setup/jest-cli.setup.js'], coveragePathIgnorePatterns: [ '/dist/', '/node_modules/', '/out-tsc/', '/test/', ], transform: { '^.+\\.ts$': ['@swc/jest'], }, modulePathIgnorePatterns: ['.cache'], };