deno.land / std@0.180.0 / media_types / type_by_extension_test.ts

type_by_extension_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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { typeByExtension } from "./mod.ts";
Deno.test({ name: "media_types - typeByExtension", fn() { const fixtures = [ ["js", "application/javascript"], [".js", "application/javascript"], ["Js", "application/javascript"], ["html", "text/html"], [".html", "text/html"], [".HTML", "text/html"], ["file.json", undefined], ["foo", undefined], [".foo", undefined], ] as const; for (const [fixture, expected] of fixtures) { assertEquals(typeByExtension(fixture), expected); } },});
std

Version Info

Tagged at
a year ago