feat(): separated private and public tests

This commit is contained in:
JJ-Cro
2025-03-15 12:05:51 +01:00
parent 15931f6ed5
commit 51d9131f17
4 changed files with 11 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ describe('Public Spot Websocket Client', () => {
wsKey: WS_KEY_MAP.spotv1,
});
} catch (e) {
console.error(`Wait for "books" subscription response exception: `, e);
console.error('Wait for "books" subscription response exception: ', e);
expect(e).toBeFalsy();
}
@@ -67,7 +67,7 @@ describe('Public Spot Websocket Client', () => {
wsKey: 'spotv1',
});
} catch (e) {
console.error(`Wait for "books" event exception: `, e);
console.error('Wait for "books" event exception: ', e);
expect(e).toBeFalsy();
}
});