diff --git a/ui/src/utils/linkify.test.ts b/ui/src/utils/linkify.test.ts index cfe9559da356f2fc550dee5364cef73e13dd6710..be50e11315a5ba7042da619a0592fe201cc843a2 100644 --- a/ui/src/utils/linkify.test.ts +++ b/ui/src/utils/linkify.test.ts @@ -238,7 +238,11 @@ const testCases: TestCase[] = [ input: "Download here: **https://example.com/file.vsix**", expected: [ { type: "text", content: "Download here: **" }, - { type: "link", content: "https://example.com/file.vsix", href: "https://example.com/file.vsix" }, + { + type: "link", + content: "https://example.com/file.vsix", + href: "https://example.com/file.vsix", + }, { type: "text", content: "**" }, ], },