Files
actual/packages/sync-server/jest.config.json
Michael Clark 7faecf4273 feedback (#5)
* feedback

* remove temp script
2025-02-10 19:26:54 +00:00

20 lines
555 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
}