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