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

res.vary.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
38
39
40
41
42
import { opine } from "../../mod.ts";import { describe, it } from "../utils.ts";import { superdeno } from "../deps.ts";
describe("res.vary()", function () { describe("with a string", function () { it("should set the value", function (done) { const app = opine();
app.use(function (req, res) { res.vary("Accept"); res.end(); });
superdeno(app) .get("/") .expect("vary", /Accept/) .expect(200, done); }); });
describe("when the value is present", function () { it("should not add it again", function (done) { const app = opine();
app.use(function (_req, res) { res.vary("Accept"); res.vary("Accept-Encoding"); res.vary("Accept-Encoding"); res.vary("Accept-Encoding"); res.vary("Accept"); res.end(); });
superdeno(app) .get("/") .expect("Vary", "Accept, Accept-Encoding") .expect(200, done); }); });});
opine

Version Info

Tagged at
2 years ago