-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
For some reason, the include of node-ssllabs breaks requests it's not involved with at all.
Seems it's adding a self signed certificate somewhere and using that?
The error is: (node:22827) UnhandledPromiseRejectionWarning: RequestError: self signed certificate
Here's a super simple example that reliably reproduces the error on my machine
npm i got node-ssllabs
const got = require('got');
const ssllabs = require('node-ssllabs');
(() => {
got('https://www.example.com')
.then((response) => {
console.log(response);
})
})();
Metadata
Metadata
Assignees
Labels
No labels