From dd2f4fc0bb493a41fee6a7ffbb3a07d1ce9ed12d Mon Sep 17 00:00:00 2001 From: ayoayco Date: Sun, 27 Apr 2025 17:29:16 +0200 Subject: [PATCH] test: fix failing test for cozify --- test/sanitizer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sanitizer.test.ts b/test/sanitizer.test.ts index eaab068..7d74225 100644 --- a/test/sanitizer.test.ts +++ b/test/sanitizer.test.ts @@ -18,7 +18,7 @@ describe('cozify()', async () => { }) test('should add base url to href of links', async () => { - const html = 'hey' + const html = 'hey' const result = await cozify(html, baseUrl) expect(result).toContain('href="https://cozy.pub?url=#"') })