qrcode-pix
Version:
<p align="center"> <img src="https://user-images.githubusercontent.com/22475804/114474255-346b1a00-9bcc-11eb-877f-0095c6fd5dba.jpg" height="200px" /> <h1 align="center">QR Code PIX - NodeJS and Browser</h1> </p> <br />
18 lines (17 loc) • 388 B
JavaScript
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
forceExit: true,
testTimeout: 10000,
collectCoverageFrom: ['src/*.ts'],
collectCoverage: true,
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
testMatch: ['**/**.test.ts'],
};