module.exports = { testEnvironment: 'node', roots: ["", "/src"], passWithNoTests: true, testMatch: ["/src/**/*.spec.{ts,tsx}"], silent: false, verbose: true, collectCoverage: true, coverageDirectory: "coverage", testPathIgnorePatterns: [ "/node_modules" ], /* The modulePathIgnorePatterns accepts these sorts of paths: /src /src/file.ts ...and ignores anything else under */ modulePathIgnorePatterns: ["^/(?!(?:src/)|(?:src$))"] };