1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-10 05:40:06 +00:00

fix: lint updates

This commit is contained in:
Allan Bowe
2021-05-10 11:13:39 +00:00
parent 50d1b4d824
commit 67c7147e62
6 changed files with 21 additions and 32 deletions

View File

@@ -28,12 +28,12 @@ describe('urlValidator', () => {
it('should return false when the URL is null', () => {
const url = null
expect(isUrl((url as unknown) as string)).toEqual(false)
expect(isUrl(url as unknown as string)).toEqual(false)
})
it('should return false when the URL is undefined', () => {
const url = undefined
expect(isUrl((url as unknown) as string)).toEqual(false)
expect(isUrl(url as unknown as string)).toEqual(false)
})
})