@iocium/favicon-fetcher
Version:
Favicon and BIMI logo fetcher for Cloudflare Workers and browser-compatible environments
21 lines (20 loc) • 435 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
export default {
preset: 'ts-jest',
testEnvironment: 'node',
coverageDirectory: "coverage",
setupFilesAfterEnv: ['<rootDir>/test/setup.ts'],
coveragePathIgnorePatterns: [
"/node_modules/",
"test/server.ts",
"test/setup.ts"
],
coverageThreshold: {
global: {
statements: 95,
branches: 90,
functions: 95,
lines: 95
}
}
};