mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
15 lines
535 B
JSON
15 lines
535 B
JSON
{
|
|
"globalSetup": "./jest.global-setup.js",
|
|
"globalTeardown": "./jest.global-teardown.js",
|
|
"testPathIgnorePatterns": ["dist", "/node_modules/", "/build/"],
|
|
"roots": ["<rootDir>"],
|
|
"moduleFileExtensions": ["ts", "js", "json"],
|
|
"testEnvironment": "node",
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": ["**/*.{js,ts,tsx}"],
|
|
"coveragePathIgnorePatterns": ["dist", "/node_modules/", "/build/", "/coverage/"],
|
|
"coverageReporters": ["html", "lcov", "text", "text-summary"],
|
|
"resetMocks": true,
|
|
"restoreMocks": true
|
|
}
|