diff options
author | Fabio Berger <me@fabioberger.com> | 2018-12-19 18:44:32 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-12-19 18:44:32 +0800 |
commit | e2510ed28f97feb33404ec0cb773214236620343 (patch) | |
tree | 58ab0a3485bcac47fb6f46052da4734b4a756b2b /packages/order-watcher/test | |
parent | 622b9f662e74d571da745047ede097c7a392d09e (diff) | |
download | dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar.gz dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar.bz2 dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar.lz dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar.xz dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.tar.zst dexon-sol-tools-e2510ed28f97feb33404ec0cb773214236620343.zip |
Add temporary console.log to test failing on CI
Diffstat (limited to 'packages/order-watcher/test')
-rw-r--r-- | packages/order-watcher/test/order_watcher_web_socket_server_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/order-watcher/test/order_watcher_web_socket_server_test.ts b/packages/order-watcher/test/order_watcher_web_socket_server_test.ts index fd388e907..fa64ac305 100644 --- a/packages/order-watcher/test/order_watcher_web_socket_server_test.ts +++ b/packages/order-watcher/test/order_watcher_web_socket_server_test.ts @@ -278,6 +278,7 @@ describe('OrderWatcherWebSocketServer', async () => { for (const client of [wsClient, wsClientTwo]) { const updateMsg = await _onMessageAsync(client); const updateData = JSON.parse(updateMsg.data); + console.log('-------------------------- UPDATE_DATA: ', updateData); const orderState = updateData.result as OrderStateValid; expect(orderState.isValid).to.be.true(); expect(orderState.orderRelevantState.makerFeeProxyAllowance).to.be.eq('0'); |