deno.land / x / esm@v135_2 / test / issue-509 / issue-509.test.ts
123456789101112import { assertStringIncludes } from "https://deno.land/std@0.180.0/testing/asserts.ts";
Deno.test("issue #509", async () => { const res = await fetch("http://localhost:8080/react@18.2.0", { headers: { "User-Agent": "HeadlessChrome/109", }, }); const text = await res.text(); assertStringIncludes(text, "/es2022/");});
Version Info