Andrea Sandrin
Results
2
comments of
Andrea Sandrin
Hi, old issue, but for me it works using `trustLocalhost` for `request("https://localhost")`, e.g.: ```js describe("GET /", function(){ it("gets index", function(){ return req .get('/') .trustLocalhost(true) .expect('Content-Type', /html/) .expect(200); }); }); ```...
Check here: #737