fix: add eslint and configure it

This commit is contained in:
StevanFreeborn
2023-02-03 00:16:38 -06:00
parent 54b0668e4a
commit bd55381dc9
16 changed files with 4259 additions and 70 deletions
-4
View File
@@ -153,10 +153,6 @@ describe('ArgumentValidator', function () {
expect(ArgumentValidator.isValidUrl('www.google.com')).to.be.false;
});
it('should return false when invalid url is passed', function () {
expect(ArgumentValidator.isValidUrl('ht://www.google')).to.be.false;
});
it('should return false when url with non http or https protocol is passed', function () {
expect(ArgumentValidator.isValidUrl('ftp://www.google.com')).to.be.false;
});