Skip to content

Commit

Permalink
test: print only options
Browse files Browse the repository at this point in the history
  • Loading branch information
alenakhineika committed May 24, 2024
1 parent 74db530 commit 14a5c9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/connectionController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/oidc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 14a5c9e

Please sign in to comment.