deno.land / x / opine@2.3.4 / test / units / req.xhr.test.ts

req.xhr.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { opine } from "../../mod.ts";import { expect, superdeno } from "../deps.ts";import { describe, it } from "../utils.ts";
describe("req", function () { describe(".xhr", function () { it("should return true when X-requested-With is xmlhttprequest", function ( done, ) { const app = opine();
app.use(function (req, res) { expect(req.xhr).toBe(true); res.end(); });
superdeno(app) .get("/") .set("X-requested-With", "xmlhttprequest") .expect(200, done); });
it("should case-insensitive", function (done) { const app = opine();
app.use(function (req, res) { expect(req.xhr).toBe(true); res.end(); });
superdeno(app) .get("/") .set("X-requested-With", "xmlhttprequest") .expect(200, done); });
it("should return false otherwise", function (done) { const app = opine();
app.use(function (req, res) { expect(req.xhr).toBe(false); res.end(); });
superdeno(app) .get("/") .set("X-requested-With", "blahblah") .expect(200, done); });
it("should return false when not present", function (done) { const app = opine();
app.use(function (req, res) { expect(req.xhr).toBe(false); res.end(); });
superdeno(app) .get("/") .expect(200, done); }); });});
opine

Version Info

Tagged at
2 years ago