test(utils-accounts): fix test description

This commit is contained in:
P. Reis 2024-05-24 11:11:26 -03:00
parent 94a9fed2cc
commit e3ff41f31f

View file

@ -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/' },