UNPKG

@vepler/http-client

Version:

A flexible and extensible API service library for making HTTP requests with built-in authentication support for bearer tokens and API keys.

19 lines (18 loc) 414 B
module.exports = { testEnvironment: 'node', preset: 'ts-jest', collectCoverageFrom: [ 'src/**/*.ts', 'tests/**/*.ts', '!**/node_modules/**', ], moduleNameMapper: { }, coverageReporters: ['html', 'text', 'text-summary', 'cobertura'], coveragePathIgnorePatterns: [ 'node_modules', 'tests', '<rootDir>/src/index.ts', '<rootDir>/tests', ], testMatch: ['**/*.test.ts'], };