Initial commit: webshare-api

Torznab + fake qBittorrent proxy for Webshare.cz, with Compose/Docker
packaging, MIT license, and tests.
This commit is contained in:
2026-08-07 08:37:10 +02:00
commit 3fcadfe973
19 changed files with 2047 additions and 0 deletions

10
jest.config.js Normal file
View File

@@ -0,0 +1,10 @@
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,
};