diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-09 00:49:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-09 00:49:21 +0800 |
commit | 7440b87596bc3925d3b980aef2a9e027936ab441 (patch) | |
tree | 733823e0a7de5ab78ce51758ad64a31ce3b215f6 /packages/assert/test/assert_test.ts | |
parent | aaa7affa46450bb48639e9b90c2a2e8adb28826c (diff) | |
parent | 583a17d6279e819ab5e37f330500444881e873d7 (diff) | |
download | dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.gz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.bz2 dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.lz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.xz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.zst dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.zip |
Merge pull request #412 from 0xProject/feature/sra-reporter
Implement initial sra-report command line tool
Diffstat (limited to 'packages/assert/test/assert_test.ts')
-rw-r--r-- | packages/assert/test/assert_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/assert/test/assert_test.ts b/packages/assert/test/assert_test.ts index b0fa398d6..1d9a34ed9 100644 --- a/packages/assert/test/assert_test.ts +++ b/packages/assert/test/assert_test.ts @@ -183,7 +183,7 @@ describe('Assertions', () => { ); }); }); - describe('#isHttpUrl', () => { + describe('#isWebUri', () => { it('should not throw for valid input', () => { const validInputs = [ 'http://www.google.com', @@ -191,7 +191,7 @@ describe('Assertions', () => { 'https://api.radarrelay.com/0x/v0/', 'https://zeroex.beta.radarrelay.com:8000/0x/v0/', ]; - validInputs.forEach(input => expect(assert.isHttpUrl.bind(assert, variableName, input)).to.not.throw()); + validInputs.forEach(input => expect(assert.isWebUri.bind(assert, variableName, input)).to.not.throw()); }); it('should throw for invalid input', () => { const invalidInputs = [ @@ -205,7 +205,7 @@ describe('Assertions', () => { 'user:password@api.example-relayer.net', '//api.example-relayer.net', ]; - invalidInputs.forEach(input => expect(assert.isHttpUrl.bind(assert, variableName, input)).to.throw()); + invalidInputs.forEach(input => expect(assert.isWebUri.bind(assert, variableName, input)).to.throw()); }); }); describe('#isUri', () => { |