UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

24 lines (23 loc) 419 B
module.exports = { preset: 'ts-jest', testEnvironment: 'node', transform: { '^.+\\.ts$': 'ts-jest', }, globals: { 'ts-jest': { tsconfig: 'tsconfig.jest.json' } }, moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1', }, transformIgnorePatterns: [ 'node_modules/(?!(chalk)/)', ], setupFiles: ['./jest.setup.ts'], testMatch: [ '**/test/**/*.functional.test.ts', '**/src/**/*.unit.test.ts', ] };