Fix tests

This commit is contained in:
Leonid Logvinov
2017-06-01 15:21:24 +02:00
parent d5d20db439
commit 21d00f04d4

View File

@@ -48,6 +48,7 @@ describe('ZeroEx library', () => {
const expectedOrderHash = '0x103a5e97dab5dbeb8f385636f86a7d1e458a7ccbe1bd194727f0b2f85ab116c7';
const order: Order = {
maker: constants.NULL_ADDRESS,
taker: constants.NULL_ADDRESS,
feeRecipient: constants.NULL_ADDRESS,
makerTokenAddress: constants.NULL_ADDRESS,
takerTokenAddress: constants.NULL_ADDRESS,
@@ -59,15 +60,8 @@ describe('ZeroEx library', () => {
expirationUnixTimestampSec: new BigNumber(0),
};
const exchangeAddress = constants.NULL_ADDRESS;
it('defaults takerAddress to NULL address', () => {
const orderHash = ZeroEx.getOrderHashHex(exchangeAddress, order);
expect(orderHash).to.be.equal(expectedOrderHash);
});
it('calculates the order hash', () => {
const orderWithZeroTaker = _.assign(order, {
taker: constants.NULL_ADDRESS,
});
const orderHash = ZeroEx.getOrderHashHex(exchangeAddress, orderWithZeroTaker);
const orderHash = ZeroEx.getOrderHashHex(exchangeAddress, order);
expect(orderHash).to.be.equal(expectedOrderHash);
});
});