fix type error in test

This commit is contained in:
Samuel Newman
2025-12-11 12:12:11 +02:00
parent 677d78b2d7
commit 52a1a7218f
+1 -1
View File
@@ -171,7 +171,7 @@ describe('isTrustedUrl', () => {
['https://docs.google.com', false],
['https://google.com/#', false],
['https://blueskywebxzendesk.com', false],
]
] as [string, boolean][]
it.each(cases)('given input uri %p, returns %p', (str, expected) => {
const output = isTrustedUrl(str)