@swarmy/lru-cache
Version:
LRU cache with event registry to handle cache changes
28 lines (26 loc) • 508 B
JavaScript
// Jest configuration for functional tests
module.exports = {
"transform": {
"^.+\\.js?": "babel-jest",
},
"globals": {
"widow": true,
},
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
],
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Functional Test Report",
},
],
],
"testPathIgnorePatterns": [
"performance.test.js",
],
};