mirror of
https://github.com/ikatyang/emoji-cheat-sheet.git
synced 2024-11-01 04:28:15 +08:00
22 lines
480 B
JSON
22 lines
480 B
JSON
|
{
|
||
|
"testEnvironment": "node",
|
||
|
"moduleFileExtensions": ["ts", "js", "json"],
|
||
|
"mapCoverage": true,
|
||
|
"coverageReporters": ["lcov", "text-summary"],
|
||
|
"transform": { "\\.ts$": "ts-jest/preprocessor" },
|
||
|
"testMatch": ["**/*.test.ts"],
|
||
|
"collectCoverageFrom": ["src/**/*.ts"],
|
||
|
"coverageThreshold": {
|
||
|
"global": {
|
||
|
"branches": 100,
|
||
|
"functions": 100,
|
||
|
"lines": 100,
|
||
|
"statements": 100
|
||
|
}
|
||
|
},
|
||
|
"reporters": [
|
||
|
"default",
|
||
|
"jest-playback"
|
||
|
]
|
||
|
}
|