slight logger improvement for test

This commit is contained in:
tiagosiebler
2022-09-16 00:51:18 +01:00
parent bd09cf8109
commit a9dd6face9
7 changed files with 43 additions and 23 deletions

View File

@@ -5,7 +5,7 @@ import {
} from '../../src';
import {
logAllEvents,
silentLogger,
getSilentLogger,
fullLogger,
waitForSocketEvent,
WS_OPEN_EVENT_PARTIAL,
@@ -19,7 +19,10 @@ describe('Public Spot V1 Websocket Client', () => {
};
beforeAll(() => {
wsClient = new WebsocketClient(wsClientOptions, silentLogger);
wsClient = new WebsocketClient(
wsClientOptions,
getSilentLogger('expectSuccess')
);
wsClient.connectPublic();
// logAllEvents(wsClient);
});