aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/test/order_watcher_websocket_server_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/order-watcher/test/order_watcher_websocket_server_test.ts')
-rw-r--r--packages/order-watcher/test/order_watcher_websocket_server_test.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/order-watcher/test/order_watcher_websocket_server_test.ts b/packages/order-watcher/test/order_watcher_websocket_server_test.ts
index d21c676fc..d1a947105 100644
--- a/packages/order-watcher/test/order_watcher_websocket_server_test.ts
+++ b/packages/order-watcher/test/order_watcher_websocket_server_test.ts
@@ -105,7 +105,14 @@ describe.only('OrderWatcherWebSocketServer', async () => {
// Prepare OrderWatcher WebSocket server
const orderWatcherConfig = {};
- wsServer = new OrderWatcherWebSocketServer(provider, networkId, contractAddresses, orderWatcherConfig);
+ const isVerbose = true;
+ wsServer = new OrderWatcherWebSocketServer(
+ provider,
+ networkId,
+ contractAddresses,
+ isVerbose,
+ orderWatcherConfig,
+ );
wsServer.start();
});
after(async () => {