Module

x/fresh/src/server/render_test.ts

The next-gen web framework.
Extremely Popular
Go to Latest
File
import { template } from "./render.ts";import { assertStringIncludes } from "../../tests/deps.ts";
Deno.test("check lang", () => { const lang = "fr"; const body = template({ bodyHtml: "", headComponents: [], imports: [], preloads: [], lang, }); assertStringIncludes(body, `<html lang="${lang}">`);});