From ec02a267954bbc736abceffb3cf8d15b6c5ed1f4 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Sun, 10 Nov 2024 20:07:25 +0100 Subject: [PATCH] test(sanitizer): update test description --- src/utils/sanitizer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/sanitizer.test.ts b/src/utils/sanitizer.test.ts index 30cfe6e..c2208bd 100644 --- a/src/utils/sanitizer.test.ts +++ b/src/utils/sanitizer.test.ts @@ -23,7 +23,7 @@ describe("cozify()", async () => { expect(result).toContain('href="https://cozy.pub?url=#"'); }); - test("should add prefetch=true of links", async () => { + test("should add prefetch=true to links", async () => { const html = "hey"; const result = await cozify(html, baseUrl); expect(result).toContain('prefetch="true"');