bcgov/citz-imb-staff-purchasing-reimbursement

View on GitHub
api/jest.config.js

Summary

Maintainability
A
0 mins
Test Coverage
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  verbose: true,
  testMatch: ["**/tests/**/*.test.js"],
  collectCoverage: false,
  coverageDirectory: "./tests/coverage",
  rootDir: "./",
  testTimeout: 10000,
  setupFiles: ["dotenv/config"],
  coverageReporters: [
    [
      "lcov",
      {
        projectRoot: ".."
      }
    ]
  ],
};