diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-10-30 21:19:04 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-10-31 00:49:16 +0800 |
commit | 456f7e73048bd9176b2126f856fb9b5415c4089b (patch) | |
tree | 5a9199033c60ba25d4db07579ac29ca369595929 /test | |
parent | ed7917f9dfc83ea4dc150fbfc14145f038c9642d (diff) | |
download | dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar.gz dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar.bz2 dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar.lz dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar.xz dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.tar.zst dexon-sol-tools-456f7e73048bd9176b2126f856fb9b5415c4089b.zip |
Introduce OrderState interface
Diffstat (limited to 'test')
-rw-r--r-- | test/order_watcher_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/order_watcher_test.ts b/test/order_watcher_test.ts index f273a1d84..e62b1aab2 100644 --- a/test/order_watcher_test.ts +++ b/test/order_watcher_test.ts @@ -36,7 +36,7 @@ describe('EventWatcher', () => { stubs = []; orderStateWatcher.unsubscribe(); }); - it.only('', (done: DoneCallback) => { - orderStateWatcher.subscribe(console.log); - }).timeout(1000000000000); + it.skip('TODO', () => { + // TODO + }); }); |