Jordan Chang

Results 2 comments of Jordan Chang

Does your app call `await this.authorizationHandler.completeAuthorizationRequestIfPossible()` on load?

Here is my code to disable AppInsights when running inside of Jest ``` if (!process.env.JEST_WORKER_ID) { console.log('Starting App Insights...') appInsights.setup().setAutoCollectConsole(true, true).start() } else { console.log('Disabling App Insights since we are...