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/ test-results/
playwright-report/ playwright-report/
playwright/.cache/ playwright/.cache/
# Test coverage reports
coverage/

View File

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