forked from mirrored/github-readme-stats
* Remove jest-bench dependency and use custom solutions * review * Update tests/bench/calculateRank.bench.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Alexandr <qwerty541zxc@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
14 lines
409 B
JavaScript
14 lines
409 B
JavaScript
export default {
|
|
clearMocks: true,
|
|
transform: {},
|
|
testEnvironment: "jsdom",
|
|
coverageProvider: "v8",
|
|
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
modulePathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
coveragePathIgnorePatterns: [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/tests/e2e/",
|
|
],
|
|
testRegex: "(\\.bench)\\.(ts|tsx|js)$",
|
|
};
|