From 78782a4594d66ddea6b68da085ccbb9b7d8ae24c Mon Sep 17 00:00:00 2001 From: Diana Barsan Date: Fri, 21 Jun 2024 17:37:19 +0300 Subject: [PATCH] remove debug logs --- test/integration/credentials-auth.spec.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/integration/credentials-auth.spec.js b/test/integration/credentials-auth.spec.js index b10b243..263ea45 100644 --- a/test/integration/credentials-auth.spec.js +++ b/test/integration/credentials-auth.spec.js @@ -91,8 +91,6 @@ describe(`integration with ${authType}`, async function () { const logs = await collectLogs(100); - console.log(logs); - expect(utils.getDbRequest(auth.username, logs, tempDbName, '/_all_docs').length).to.equal(1); expect(utils.getSessionRequests(logs).length).to.equal(1); expect(utils.getCookieAuthRequests(auth.username, logs).length).to.equal(1); @@ -111,8 +109,6 @@ describe(`integration with ${authType}`, async function () { await expect(tempDb.allDocs()).to.eventually.be.rejectedWith(wrongAuthError); const logs = await collectLogs(); - console.log(logs); - expect(utils.getSessionRequests(logs, false).length).to.equal(1); expect(utils.getDbRequest('undefined', logs, tempDbName, '/_all_docs', false).length).to.equal(2); });