deno.land / x / alosaur@v1.1.1 / e2e / middleware.test.ts

middleware.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
import { assertEquals } from "../src/deps_test.ts";import { killServer, startServer } from "./test.utils.ts";const { test } = Deno;
/** * Test cases */test({ name: "[http] middleware test", async fn(t): Promise<void> { const process = await startServer("./examples/middlewares/app.ts"); const baseUrl = "http://localhost:8000/app/home";
try { await t.step("/app/home/test?name=john&test=test", async () => { const response = await fetch(baseUrl + "/test?name=john&test=test"); const text = await response.text();
assertEquals(response.status, 200); assertEquals(text, "8"); }); } finally { killServer(process); } },});
alosaur

Version Info

Tagged at
2 months ago