Skip to content
Snippets Groups Projects

Add tests

3 files
+ 4
3
Compare changes
  • Side-by-side
  • Inline

Files

jest.config.ts 0 → 100644
+ 10
0
import type { JestConfigWithTsJest } from "ts-jest";
const config: JestConfigWithTsJest = {
preset: "ts-jest",
testEnvironment: "node",
reporters: ["default", "jest-junit"],
coverageProvider: "v8",
};
export default config;
Loading