aboutsummaryrefslogtreecommitdiffstats
path: root/test/0x.js.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-05-25 18:08:54 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-05-25 18:08:54 +0800
commit5be5debdf1122d7f9767fa7e5cd23a23d91bf93c (patch)
tree66c7a8c97350b198d3cc12dbd2a968e9a5953d4e /test/0x.js.ts
parent334d2f175fd9dcb3f9e336250d21c7916a2671ae (diff)
downloaddexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.gz
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.bz2
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.lz
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.xz
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.tar.zst
dexon-0x-contracts-5be5debdf1122d7f9767fa7e5cd23a23d91bf93c.zip
Port isValidOrderHash and tests
Diffstat (limited to 'test/0x.js.ts')
-rw-r--r--test/0x.js.ts10
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;
+ });
+ });
});