deno.land / x / opine@2.3.4 / examples / static-files / index.test.ts
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384import { superdeno } from "../../test/deps.ts";import { describe, it } from "../../test/utils.ts";import { app } from "./index.ts";
const toOsNewlines = (str: string) => Deno.build.os === "windows" ? str.replaceAll("\n", "\r\n") : str;
describe("static-files", () => { describe("`public` on /", () => { it("should serve hello.txt", async () => { await superdeno(app) .get("/hello.txt") .expect(200, "Hello Deno!"); });
it("should serve js/app.js", async () => { await superdeno(app) .get("/js/app.js") .expect(200, toOsNewlines("// app.js\n")); });
it("should serve js/helper.js", async () => { await superdeno(app) .get("/js/helper.js") .expect(200, toOsNewlines("// helper.js\n")); });
it("should serve css/style.css", async () => { await superdeno(app) .get("/css/style.css") .expect( 200, toOsNewlines( "/* style.css */\nbody {\n background: darkslategrey;\n}\n", ), ); }); });
describe("`public` on /static", () => { it("should serve hello.txt", async () => { await superdeno(app) .get("/static/hello.txt") .expect(200, "Hello Deno!"); });
it("should serve js/app.js", async () => { await superdeno(app) .get("/static/js/app.js") .expect(200, toOsNewlines("// app.js\n")); });
it("should serve js/helper.js", async () => { await superdeno(app) .get("/static/js/helper.js") .expect(200, toOsNewlines("// helper.js\n")); });
it("should serve css/style.css", async () => { await superdeno(app) .get("/static/css/style.css") .expect( 200, toOsNewlines( "/* style.css */\nbody {\n background: darkslategrey;\n}\n", ), ); }); });
describe("`public/css` on /", () => { it("should serve css/style.css", async () => { await superdeno(app) .get("/style.css") .expect( 200, toOsNewlines( "/* style.css */\nbody {\n background: darkslategrey;\n}\n", ), ); }); });});
Version Info