Clean up whitespace in CouchDB factory and add coverage directory to gitignore

This commit is contained in:
William Valentin
2025-09-07 16:18:32 -07:00
parent bffd13e6fc
commit bfebb34b7a
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View File

@@ -37,3 +37,6 @@ couchdb-data/
test-results/
playwright-report/
playwright/.cache/
# Test coverage reports
coverage/

View File

@@ -21,7 +21,6 @@ const createDbService = () => {
if (isProduction()) {
try {
// Use dynamic require to avoid TypeScript resolution issues
const {
CouchDBService: RealCouchDBService,
} = require('./couchdb.production');