UNPKG

chrome-cookie-extractor

Version:

Extract and decrypt Chrome cookies with curl integration - includes auth-curl command for authenticated requests

23 lines 436 B
module.exports = { preset: 'ts-jest', testEnvironment: 'node', collectCoverageFrom: [ 'src/**/*.ts', '!src/**/*.d.ts', '!src/cli.ts', '!src/auth-curl.ts' ], testMatch: [ '**/tests/**/*.test.ts', '**/src/**/*.test.ts' ], setupFilesAfterEnv: ['<rootDir>/tests/setup.ts'], coverageThreshold: { global: { branches: 70, functions: 70, lines: 70, statements: 70 } } };