deno.land / x / opine@2.3.4 / test / units / res.removeHeader.test.ts

res.removeHeader.test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import opine from "../../mod.ts";import { describe, it } from "../utils.ts";import { superdeno } from "../deps.ts";import { expect } from "../deps.ts";
describe("res", function () { describe(".removeHeader(field)", function () { it("should remove the response header field", function (done) { const app = opine();
app.use(function (req, res) { res.set("Content-Type", "text/x-foo; charset=utf-8"); res.removeHeader("Content-Type").end(); });
superdeno(app) .get("/") .end((_, res) => { expect(res.header).not.toHaveProperty("Content-Type"); done(); }); });
it("should do nothing if header is not present", function (done) { const app = opine();
app.use(function (req, res) { res.removeHeader("Content-Type").end(); });
superdeno(app) .get("/") .expect(200, done); }); });});
opine

Version Info

Tagged at
2 years ago