YOU54F/jest-pact

View on GitHub
jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  moduleFileExtensions: ['ts', 'js', 'json'],

  transform: {
    '^.+\\.(ts|tsx)$': [
      'ts-jest',
      {
        tsconfig: 'tsconfig.json',
      },
    ],
  },
  testMatch: ['**/*.test.(ts)'],
  testEnvironment: 'node',
  reporters: ['default', ['jest-junit', { output: './coverage/junit/unit' }]],
  watchPathIgnorePatterns: ['pact/logs/*', 'pact/pacts/*'],
};