From 7641f578b4074b4a137ded1846f614655924b71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=B6lpin-Freese?= Date: Thu, 29 Feb 2024 17:24:39 +0100 Subject: [PATCH] test: fix test --- src/index.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.spec.ts b/src/index.spec.ts index 9185443..31ca22e 100644 --- a/src/index.spec.ts +++ b/src/index.spec.ts @@ -257,12 +257,12 @@ describe("Tests the public API", () => { const file = getBytes("a.ps"); const result = filetypemime(file); expect(result).toContain("application/postscript"); + }); it("detects svg", () => { // File created using https://png2jpg.com const file = getBytes("a.svg"); const result = filetypemime(file); expect(result).toContain("image/svg+xml"); - }); });