mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-06 05:02:26 +03:00
24 lines
522 B
JavaScript
24 lines
522 B
JavaScript
// For a detailed explanation regarding each configuration property, visit:
|
|
// https://jestjs.io/docs/en/configuration.html
|
|
|
|
module.exports = {
|
|
clearMocks: true,
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
moduleDirectories: [
|
|
"src",
|
|
"node_modules",
|
|
],
|
|
moduleFileExtensions: [
|
|
"js",
|
|
"json",
|
|
"jsx",
|
|
"ts",
|
|
"tsx",
|
|
"node"
|
|
],
|
|
testPathIgnorePatterns: [
|
|
"\\\\node_modules\\\\", "./dist"
|
|
],
|
|
verbose: true,
|
|
}; |