Skip to content

Commit

Permalink
fix: timeout from config during late inject(ReviewFix V2)
Browse files Browse the repository at this point in the history
  • Loading branch information
sn-sap committed Nov 10, 2023
1 parent 12a0050 commit c4272a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default class Service implements Services.ServiceInstance {
if (await checkForUI5Page(browserInstance)) {
// depending on the scenario (lateInject, multiRemote) we have to access the config differently
const config = this._config ? this._config : browserInstance.options
if (!config?.wdi5) {
if (!config["wdi5"]) {
//Fetching config from global variable
config["wdi5"] = global.__wdi5Config.wdi5
}
Expand Down

0 comments on commit c4272a0

Please sign in to comment.