diff --git a/.gitignore b/.gitignore index b50401d..a242bc0 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,6 @@ couchdb-data/ test-results/ playwright-report/ playwright/.cache/ + +# Test coverage reports +coverage/ diff --git a/services/couchdb.factory.ts b/services/couchdb.factory.ts index 33bace9..ba2e387 100644 --- a/services/couchdb.factory.ts +++ b/services/couchdb.factory.ts @@ -21,7 +21,6 @@ const createDbService = () => { if (isProduction()) { try { // Use dynamic require to avoid TypeScript resolution issues - const { CouchDBService: RealCouchDBService, } = require('./couchdb.production');