diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 18:08:54 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 18:08:54 +0800 |
commit | 5be5debdf1122d7f9767fa7e5cd23a23d91bf93c (patch) | |
tree | 66c7a8c97350b198d3cc12dbd2a968e9a5953d4e /test | |
parent | 334d2f175fd9dcb3f9e336250d21c7916a2671ae (diff) | |
download | dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.gz dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.bz2 dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.lz dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.xz dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.zst dexon-sol-tools-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.zip |
Port isValidOrderHash and tests
Diffstat (limited to 'test')
-rw-r--r-- | test/0x.js.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/0x.js.ts b/test/0x.js.ts index e4e3cc0a7..26e56a18b 100644 --- a/test/0x.js.ts +++ b/test/0x.js.ts @@ -86,4 +86,14 @@ describe('ZeroEx library', () => { expect(salt.lessThan(twoPow256)).to.be.true; }); }); + describe('#isValidOrderHash', () => { + it('returns false if the length is wrong', () => { + const isValid = ZeroEx.isValidOrderHash('0xdeadbeef'); + expect(isValid).to.be.false; + }); + it('returns true if order hash is correct', () => { + const isValid = ZeroEx.isValidOrderHash('0x' + Array(65).join('0')); + expect(isValid).to.be.true; + }); + }); }); |