aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/test/dutch_auction_wrapper_test.ts
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-12-23 04:56:52 +0800
committerGreg Hysen <greg.hysen@gmail.com>2019-01-08 07:50:48 +0800
commitc6ab380685098dbf3a0a6ee5fae137e816839c2d (patch)
tree2f4e6f2934fde26d5fadbab0eea9a590c1a1b6f1 /packages/contract-wrappers/test/dutch_auction_wrapper_test.ts
parentd6467d707fdc1797eba4a445e805ccadc1f47872 (diff)
downloaddexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.gz
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.bz2
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.lz
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.xz
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.tar.zst
dexon-sol-tools-c6ab380685098dbf3a0a6ee5fae137e816839c2d.zip
Ran prettier & linter
Diffstat (limited to 'packages/contract-wrappers/test/dutch_auction_wrapper_test.ts')
-rw-r--r--packages/contract-wrappers/test/dutch_auction_wrapper_test.ts10
1 files changed, 4 insertions, 6 deletions
diff --git a/packages/contract-wrappers/test/dutch_auction_wrapper_test.ts b/packages/contract-wrappers/test/dutch_auction_wrapper_test.ts
index 16d370cb6..4e6ad44e9 100644
--- a/packages/contract-wrappers/test/dutch_auction_wrapper_test.ts
+++ b/packages/contract-wrappers/test/dutch_auction_wrapper_test.ts
@@ -1,3 +1,4 @@
+import { expectTransactionFailedAsync, getLatestBlockTimestampAsync } from '@0x/contracts-test-utils';
import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils } from '@0x/order-utils';
import { RevertReason, SignedOrder } from '@0x/types';
@@ -9,13 +10,10 @@ import { ContractWrappers } from '../src';
import { chaiSetup } from './utils/chai_setup';
import { constants } from './utils/constants';
+import { DutchAuctionUtils } from './utils/dutch_auction_utils';
import { migrateOnceAsync } from './utils/migrate';
import { tokenUtils } from './utils/token_utils';
import { provider, web3Wrapper } from './utils/web3_wrapper';
-import { getLatestBlockTimestampAsync } from '@0x/contracts-test-utils';
-import { DutchAuctionUtils } from './utils/dutch_auction_utils';
-
-import { expectTransactionFailedAsync } from '@0x/contracts-test-utils';
chaiSetup.configure();
const expect = chai.expect;
@@ -23,7 +21,7 @@ const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
// tslint:disable:custom-no-magic-numbers
describe('DutchAuctionWrapper', () => {
- const fillableAmount = new BigNumber(2); //Web3Wrapper.toBaseUnitAmount(new BigNumber(50), 18);
+ const fillableAmount = new BigNumber(2);
const tenMinutesInSeconds = 10 * 60;
let contractWrappers: ContractWrappers;
let exchangeContractAddress: string;
@@ -62,7 +60,7 @@ describe('DutchAuctionWrapper', () => {
// setup auction details in maker asset data
auctionEndAmount = fillableAmount;
auctionBeginAmount = auctionEndAmount.times(2);
- const currentBlockTimestamp = await getLatestBlockTimestampAsync();
+ const currentBlockTimestamp: number = await getLatestBlockTimestampAsync();
auctionBeginTimeSeconds = new BigNumber(currentBlockTimestamp - tenMinutesInSeconds);
auctionEndTimeSeconds = new BigNumber(currentBlockTimestamp + tenMinutesInSeconds);
// create auction orders