From bfebb34b7ac7b455c95a3ed1fa61f4e603ddddb5 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Sun, 7 Sep 2025 16:18:32 -0700 Subject: [PATCH] Clean up whitespace in CouchDB factory and add coverage directory to gitignore --- .gitignore | 3 +++ services/couchdb.factory.ts | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) 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');