From e3ff41f31f842195f69ff832fe7505b26ea75fe0 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Fri, 24 May 2024 11:11:26 -0300 Subject: [PATCH] test(utils-accounts): fix test description --- src/utils/accounts.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/accounts.test.ts b/src/utils/accounts.test.ts index 2d81e2b0..486dba74 100644 --- a/src/utils/accounts.test.ts +++ b/src/utils/accounts.test.ts @@ -7,7 +7,7 @@ type testSanatizeWbsite = { expectedOutput: string | undefined; }; -Deno.test('throws a RelayError when inserting an event deleted by a user', () => { +Deno.test('Sanitizes a URL to include an https prefix', () => { const testCases: testSanatizeWbsite[] = [ { url: 'https://alexgleason.me/', expectedOutput: 'https://alexgleason.me/' }, { url: 'http://alexgleason.me/', expectedOutput: 'http://alexgleason.me/' },