From 14a5c9e69b541f7a1f55f3da1cc8b8a35b63445f Mon Sep 17 00:00:00 2001 From: Alena Khineika Date: Fri, 24 May 2024 14:50:28 +0200 Subject: [PATCH] test: print only options --- src/connectionController.ts | 8 ++++++-- src/test/suite/oidc.test.ts | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/connectionController.ts b/src/connectionController.ts index a3bce586c..04c8bd1d7 100644 --- a/src/connectionController.ts +++ b/src/connectionController.ts @@ -614,8 +614,12 @@ export default class ConnectionController { console.log(`${util.inspect(this._activeDataService.isConnected())}`); console.log('----------------------'); - console.log('this._activeDataService----------------------'); - console.log(`${util.inspect(this._activeDataService)}`); + console.log( + 'this._activeDataService.getConnectionOptions()----------------------' + ); + console.log( + `${util.inspect(this._activeDataService.getConnectionOptions())}` + ); console.log('----------------------'); await this._activeDataService.disconnect(); diff --git a/src/test/suite/oidc.test.ts b/src/test/suite/oidc.test.ts index e0221e98b..b09da2d22 100644 --- a/src/test/suite/oidc.test.ts +++ b/src/test/suite/oidc.test.ts @@ -58,7 +58,7 @@ const DEFAULT_TOKEN_PAYLOAD = { // eslint-disable-next-line mocha/no-exclusive-tests suite.only('OIDC Tests', function () { - this.timeout(100000); + this.timeout(50000); const extensionContextStub = new ExtensionContextStub(); const testStorageController = new StorageController(extensionContextStub);