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); });