UNPKG

react-sparklines-typescript

Version:

react-sparklines rewritten in typescript and modern react patterns

27 lines 1.19 kB
"use strict"; // For a detailed explanation regarding each configuration property, visit: // https://jestjs.io/docs/en/configuration.html module.exports = { // All imported modules in your tests should be mocked automatically // automock: false, // Stop running tests after `n` failures // bail: 0, // Respect "browser" field in package.json when resolving modules // browser: false, // The directory where Jest should store its cached dependency information // cacheDirectory: "/private/var/folders/7v/4dc3zrsx1z3bz5g667mrkgyr0000gp/T/jest_dy", // Automatically clear mock calls and instances between every test clearMocks: true, // Indicates whether the coverage information should be collected while executing the test // collectCoverage: false, // An array of glob patterns indicating a set of files for which coverage information should be collected collectCoverageFrom: [ "**/*.{ts,tsx}", "!**/node_modules/**", "!**/build/**", "!**/coverage/**", ], // The directory where Jest should output its coverage files coverageDirectory: "coverage", }; //# sourceMappingURL=jest.config.js.map