We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c71a3b2 commit f61a7a4Copy full SHA for f61a7a4
1 file changed
test/test.js
@@ -39,8 +39,6 @@ function makeRequest(path = "/", secure = false) {
39
})
40
}
41
42
-let proc
43
-
44
// TESTS
45
describe("Testing https-localhost", () => {
46
it("redirect http to https", async function() {
@@ -56,6 +54,5 @@ describe("Testing https-localhost", () => {
56
54
await makeRequest("/test/static.html", true)
57
55
.then(res => assert(
58
res.data.toString() === fs.readFileSync("test/static.html").toString()))
59
- if (proc) proc.kill("SIGINT")
60
61
0 commit comments