Skip to main content
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../assert/mod.ts";import { extensionsByType } from "./extensions_by_type.ts";
Deno.test({ name: "extensionsByType()", fn() { const fixtures: [string, string[] | undefined][] = [ ["text/plain; charset", 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); } },});