Skip to content

Commit

Permalink
fix(@angular/cli): initialize baseUrl variable
Browse files Browse the repository at this point in the history
baseUrl is not provided to protractor config because it was undefined
  • Loading branch information
Potapy4 authored and vikerman committed Oct 3, 2019
1 parent f96a58e commit 751a738
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async function execute(
await updateWebdriver();
}

let baseUrl;
let baseUrl = options.baseUrl;
let server;
if (options.devServerTarget) {
const target = targetFromTargetString(options.devServerTarget);
Expand Down

0 comments on commit 751a738

Please sign in to comment.