You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
465 B

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