Skip to content

Commit

Permalink
Add error logging for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
wgoehrig committed Nov 15, 2024
1 parent 8f299f3 commit bebe191
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/electron/src/integration-test/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const userDataPath = getElectronUserDataPath();
let electronApp: ElectronApplication;
let electronPage: Page;
const testHelper = new TestHelper(signInOptions);
const tokenStore = new RefreshTokenStore(getTokenStoreFileName(),getTokenStoreKey(), userDataPath);
const tokenStore = new RefreshTokenStore(getTokenStoreFileName(), getTokenStoreKey(), userDataPath);

function getTokenStoreKey(issuerUrl?: string): string {
const authority = new URL(issuerUrl ?? "https://ims.bentley.com");
Expand Down Expand Up @@ -72,6 +72,7 @@ test.beforeEach(async () => {
});
electronPage = await electronApp.firstWindow();
} catch (error) {
console.error(error);
}
});

Expand Down

0 comments on commit bebe191

Please sign in to comment.