mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-11 05:46:50 +08:00
* Add test step in pr-check action * Add jest action * Specify wd * Remove action * Remove test * Add anti-cheat check
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import { defaults as tsjPreset } from "ts-jest/presets";
|
|
|
|
export default {
|
|
preset: "@shelf/jest-mongodb",
|
|
transform: tsjPreset.transform,
|
|
setupFilesAfterEnv: ["<rootDir>/setup-tests.ts"],
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 0,
|
|
functions: 0,
|
|
lines: 0,
|
|
statements: 0,
|
|
},
|
|
},
|
|
};
|