notion-ts-client
Version:
Generates an easy to use and fully typed API to access and modify the data in Notion Databases
11 lines (10 loc) • 357 B
text/typescript
/** @type {import('ts-jest').JestConfigWithTsJest} */
export default {
preset: "ts-jest",
testEnvironment: "node",
testMatch: ["<rootDir>/**/*.spec.ts"],
testPathIgnorePatterns: ["/node_modules/"],
coverageDirectory: "./coverage",
coveragePathIgnorePatterns: ["node_modules", "src/test", "src/types"],
reporters: ["default", "jest-junit"],
};