From ba5e4e126b7e02cc292b4920116e401559f82792 Mon Sep 17 00:00:00 2001 From: Travis Briggs Date: Sat, 14 Dec 2024 08:25:24 -0800 Subject: [PATCH] Update comment --- test/unit/saveArticles.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/saveArticles.test.ts b/test/unit/saveArticles.test.ts index e1682782..59fbcab0 100644 --- a/test/unit/saveArticles.test.ts +++ b/test/unit/saveArticles.test.ts @@ -238,7 +238,7 @@ describe('saveArticles', () => { const articleDoc = domino.createDocument(result[0].html) - // Document has scripts that we added, but shouldn't have any with a `src`. + // Document has scripts that we added, but shouldn't have any without a `src` (inline). const remainingInlineScripts = Array.from(articleDoc.querySelectorAll('script:not([src])')) expect(remainingInlineScripts.length).toBe(0) })