Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 2, 2024
1 parent bb07343 commit b461036
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/test-nginx.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@ describe('nginx config', () => {
// when
const res = await fetchHttp('/', { headers:{ host:'bad.example.com' } });

console.log('res.headers:', res.headers);
console.log('res.body:', res.body);

// then
assert.equal(res.status, 421);
});
Expand All @@ -125,9 +122,6 @@ describe('nginx config', () => {
// when
const res = await fetchHttps('/', { headers:{ host:'bad.example.com' } });

console.log('res.headers:', res.headers);
console.log('res.body:', res.body);

// then
assert.equal(res.status, 421);
});
Expand Down

0 comments on commit b461036

Please sign in to comment.