aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-11-21 06:55:53 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-21 06:55:53 +0800
commit3ad6020e192e73ce276cc090751cedf2036e6a06 (patch)
tree1c7a328819b40798c2692fbc1b5f8b73bd255fe6 /packages/0x.js/test
parent3fc8645d92f293fcfd3a10affcabdbd75b8714b5 (diff)
downloaddexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar.gz
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar.bz2
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar.lz
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar.xz
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.tar.zst
dexon-sol-tools-3ad6020e192e73ce276cc090751cedf2036e6a06.zip
Address nits
Diffstat (limited to 'packages/0x.js/test')
-rw-r--r--packages/0x.js/test/expiration_watcher_test.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/0x.js/test/expiration_watcher_test.ts b/packages/0x.js/test/expiration_watcher_test.ts
index a384658e7..19c08a811 100644
--- a/packages/0x.js/test/expiration_watcher_test.ts
+++ b/packages/0x.js/test/expiration_watcher_test.ts
@@ -11,7 +11,7 @@ import {Web3Wrapper} from '../src/web3_wrapper';
import {TokenUtils} from './utils/token_utils';
import {ExpirationWatcher} from '../src/order_watcher/expiration_watcher';
import {Token, DoneCallback} from '../src/types';
-import {ZeroEx} from '../src';
+import {ZeroEx} from '../src/0x';
import {FillScenarios} from './utils/fill_scenarios';
import {reportCallbackErrors} from './utils/report_callback_errors';
@@ -65,8 +65,8 @@ describe('ExpirationWatcher', () => {
});
it('correctly emits events when order expires', (done: DoneCallback) => {
(async () => {
- const orderLifetimeS = 60;
- const expirationUnixTimestampSec = currentUnixTimestampSec.plus(orderLifetimeS);
+ const orderLifetimeSec = 60;
+ const expirationUnixTimestampSec = currentUnixTimestampSec.plus(orderLifetimeSec);
const signedOrder = await fillScenarios.createFillableSignedOrderAsync(
makerTokenAddress, takerTokenAddress, makerAddress, takerAddress, fillableAmount,
expirationUnixTimestampSec,
@@ -79,13 +79,13 @@ describe('ExpirationWatcher', () => {
done();
});
expirationWatcher.subscribe(callbackAsync);
- timer.tick(orderLifetimeS * 1000);
+ timer.tick(orderLifetimeSec * 1000);
})().catch(done);
});
it('doesn\'t emit events before order expires', (done: DoneCallback) => {
(async () => {
- const orderLifetimeS = 60;
- const expirationUnixTimestampSec = currentUnixTimestampSec.plus(orderLifetimeS);
+ const orderLifetimeSec = 60;
+ const expirationUnixTimestampSec = currentUnixTimestampSec.plus(orderLifetimeSec);
const signedOrder = await fillScenarios.createFillableSignedOrderAsync(
makerTokenAddress, takerTokenAddress, makerAddress, takerAddress, fillableAmount,
expirationUnixTimestampSec,
@@ -96,7 +96,7 @@ describe('ExpirationWatcher', () => {
done(new Error('Emitted expiration went before the order actually expired'));
});
expirationWatcher.subscribe(callbackAsync);
- const notEnoughTime = orderLifetimeS - 1;
+ const notEnoughTime = orderLifetimeSec - 1;
timer.tick(notEnoughTime * 1000);
done();
})().catch(done);