All files / app jest.config.js

0% Statements 0/4
100% Branches 0/0
100% Functions 0/0
0% Lines 0/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                                               
const nextJest = require("next/jest");
 
// Providing the path to your Next.js app which will enable loading next.config.js and .env files
const createJestConfig = nextJest({ dir: "./" });
 
const customJestConfig = {
  collectCoverageFrom: [
    "**/*.{js,jsx,ts,tsx}",
    "!**/node_modules/**",
    "!proto/**",
    "!stories/**",
    "!.next/**",
    "!**/*.stories.tsx",
  ],
  //<rootDir> instead of . - https://github.com/tannerlinsley/react-query/issues/2339
  moduleDirectories: ["node_modules", "<rootDir>"],
  setupFilesAfterEnv: ["./test/setupTests.ts"],
  testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/.next/"],
  testEnvironment: "jsdom",
  resetMocks: true,
};
 
module.exports = createJestConfig(customJestConfig);