Port isValidOrderHash and tests
This commit is contained in:
@@ -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;
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user