Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Jun 21, 2024
1 parent aa092bb commit 78782a4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/integration/credentials-auth.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
});
Expand Down

0 comments on commit 78782a4

Please sign in to comment.