aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-10-05 19:39:22 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-10-05 20:35:37 +0800
commit1b6d3b0f0b193f5237210b92e72b898db8a92232 (patch)
tree67ee0ab50eff7e2ec57d36c26153596c52f48383
parent7dd63523939822203d938511472c84b8ff418aaf (diff)
downloaddexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar.gz
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar.bz2
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar.lz
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar.xz
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.tar.zst
dexon-0x-contracts-1b6d3b0f0b193f5237210b92e72b898db8a92232.zip
Add missing comments
-rw-r--r--test/exchange_wrapper_test.ts3
-rw-r--r--test/token_wrapper_test.ts2
2 files changed, 3 insertions, 2 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts
index 51d6957d5..4bd216757 100644
--- a/test/exchange_wrapper_test.ts
+++ b/test/exchange_wrapper_test.ts
@@ -617,7 +617,7 @@ describe('ExchangeWrapper', () => {
});
});
});
- describe('#subscribe', () => {
+ describe('#subscribeAsync', () => {
const indexFilterValues = {};
const shouldThrowOnInsufficientBalanceOrAllowance = true;
let makerTokenAddress: string;
@@ -714,6 +714,7 @@ describe('ExchangeWrapper', () => {
done();
})().catch(done);
});
+ // TODO test block reorgs and backfills
});
describe('#getOrderHashHexUsingContractCallAsync', () => {
let makerTokenAddress: string;
diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts
index be97496e0..6ada6588c 100644
--- a/test/token_wrapper_test.ts
+++ b/test/token_wrapper_test.ts
@@ -416,7 +416,7 @@ describe('TokenWrapper', () => {
done();
})().catch(done);
});
- // TODO test block reorgs
+ // TODO test block reorgs and backfills
});
describe('#getLogsAsync', () => {
let tokenAddress: string;