Torznab + fake qBittorrent proxy for Webshare.cz, with Compose/Docker packaging, MIT license, and tests.
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/__tests__/**/*.test.js'],
|
|
collectCoverageFrom: ['src/**/*.js', '!src/index.js'],
|
|
coverageThreshold: {
|
|
global: { lines: 90, branches: 80, functions: 90, statements: 90 },
|
|
},
|
|
testTimeout: 15000,
|
|
forceExit: true,
|
|
};
|