Skip to content

Commit

Permalink
chore: troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Oct 29, 2024
1 parent 1ea3fb8 commit 01d3a2f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/core/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,9 @@ describe('Core Tests', () => {
await defaultCtx.request('https://example.com:81/', { signal });
assert.fail();
} catch (err) {
console.log(err);

Check warning on line 239 in test/core/index.test.js

View workflow job for this annotation

GitHub Actions / Test

Unexpected console statement
console.log(err.stack);

Check warning on line 240 in test/core/index.test.js

View workflow job for this annotation

GitHub Actions / Test

Unexpected console statement
console.log(typeof err);

Check warning on line 241 in test/core/index.test.js

View workflow job for this annotation

GitHub Actions / Test

Unexpected console statement
assert(err instanceof RequestAbortedError);
}
const ts1 = Date.now();
Expand Down

0 comments on commit 01d3a2f

Please sign in to comment.