jest-serializer-react-helmet-async
Version:
Serializer to display react-helmet-async data in Jest Snapshots
41 lines (40 loc) • 869 B
JavaScript
module.exports = {
collectCoverage: true,
coverageReporters: ["json", "text"],
projects: [
{
displayName: "test",
preset: "ts-jest",
collectCoverage: true,
coverageReporters: ["json", "text"],
testPathIgnorePatterns: [
"/node_modules/",
"/dist/",
"/coverage/",
"/reports/",
],
},
{
preset: "jest-runner-prettier",
displayName: "lint:prettier",
testPathIgnorePatterns: [
"/node_modules/",
"/dist/",
"/coverage/",
"/reports/",
],
},
{
runner: "eslint",
displayName: "lint:eslint",
moduleFileExtensions: ["js", "tsx"],
testMatch: ["**/*.js", "**/*.tsx"],
testPathIgnorePatterns: [
"/node_modules/",
"/dist/",
"/coverage/",
"/reports/",
],
},
],
};