bcgov/document-generation-showcase

View on GitHub
app/jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  clearMocks: true,
  collectCoverage: true,
  collectCoverageFrom: ['src/**/*.js', '!frontend/**/*.*'],
  moduleFileExtensions: ['js', 'json'],
  moduleNameMapper: {
    '^@/(.*)$': '<rootDir>/src/$1'
  },
  testMatch: [
    '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
  ],
  testPathIgnorePatterns: ['frontend'],
  testEnvironmentOptions: {
    url: 'http://localhost/'
  }
};