aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-05-15 01:44:18 -0500
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-05-15 19:05:55 -0500
commit082b64b6c40fcab3ecf303f53ce83e7753894a32 (patch)
tree92626869949cc671effce89cfbcd52092243de5c /src/helpers
parentfix: revert "Typescript conversion" (#153) (diff)
downloadferdium-app-082b64b6c40fcab3ecf303f53ce83e7753894a32.tar.gz
ferdium-app-082b64b6c40fcab3ecf303f53ce83e7753894a32.tar.zst
ferdium-app-082b64b6c40fcab3ecf303f53ce83e7753894a32.zip
Extract utility functions for JSON parsing
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/url-helpers.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/url-helpers.test.ts b/src/helpers/url-helpers.test.ts
index e6036893e..5af3025e9 100644
--- a/src/helpers/url-helpers.test.ts
+++ b/src/helpers/url-helpers.test.ts
@@ -3,7 +3,7 @@ import * as url_helpers from './url-helpers'
3describe('url_helpers', () => { 3describe('url_helpers', () => {
4 describe('isValidExternalURL', () => { 4 describe('isValidExternalURL', () => {
5 describe('with string', () => { 5 describe('with string', () => {
6 it('returns false for empty string ', () => { 6 it('returns false for empty string', () => {
7 const result = url_helpers.isValidExternalURL(''); 7 const result = url_helpers.isValidExternalURL('');
8 expect(result).toBe(false); 8 expect(result).toBe(false);
9 }); 9 });