Fix some linting warnings for "Line exceeds maximum allowed length."

This commit is contained in:
Arlo Breault 2019-05-08 17:27:00 -04:00
parent 5384ef9d16
commit dad53932a2
7 changed files with 27 additions and 12 deletions

View file

@ -24,8 +24,9 @@ describe 'BuildUrl', ->
it 'should handle params', ->
expect WS.buildUrl 'http', 'example.com', 80, '/test', [['k', '%#v']]
.toBe 'http://example.com/test?k=%25%23v'
expect WS.buildUrl 'http', 'example.com', 80, '/test', [['a', 'b'], ['c', 'd']]
.toBe 'http://example.com/test?a=b&c=d'
expect(WS.buildUrl(
'http', 'example.com', 80, '/test', [['a', 'b'], ['c', 'd']]
)).toBe 'http://example.com/test?a=b&c=d'
it 'should handle ips', ->
expect WS.buildUrl 'http', '1.2.3.4'
.toBe 'http://1.2.3.4'