We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0801c8e commit 41477f5Copy full SHA for 41477f5
1 file changed
tests/allErrors.test.ts
@@ -10,7 +10,7 @@ describe('AllErrors', () => {
10
next();
11
});
12
13
- it('throws an error when an invalid token is set', async () => {
+ it.skip('throws an error when an invalid token is set', async () => {
14
console.log('Testing "Credentials error" error:');
15
16
const client = new TradingView.Client({
@@ -231,7 +231,7 @@ describe('AllErrors', () => {
231
232
it.skipIf(
233
!token || !signature,
234
- )('throws an error when creating an authenticated client without signature', async () => {
+ ).skip('throws an error when creating an authenticated client without signature', async () => {
235
console.log('Testing "Wrong or expired sessionid/signature" error using client:');
236
237
const client = new TradingView.Client({ token });
0 commit comments