emoji-cheat-sheet/jest.json

22 lines
480 B
JSON
Raw Normal View History

2017-07-15 23:39:24 +08:00
{
"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"
]
}