deno.land / std@0.173.0 / media_types / extensions_by_type_test.ts

extensions_by_type_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { extensionsByType } from "./mod.ts";
Deno.test({ name: "media_types - extensionsByType()", fn() { const fixtures: [string, string[] | undefined][] = [ ["image/gif", ["gif"]], ["application/javascript", ["js", "mjs"]], ["text/html; charset=UTF-8", ["html", "htm", "shtml"]], ["application/foo", undefined], ]; for (const [fixture, expected] of fixtures) { assertEquals(extensionsByType(fixture), expected); } },});
std

Version Info

Tagged at
a year ago