Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(browser): Add space after full stop in error message. (#4594)
Browse files Browse the repository at this point in the history
Linkifiers interpret the ".If" at the end of the URL as part of the URL.
  • Loading branch information
iphydf authored and qiyigg committed Jan 8, 2018
1 parent 7f968e0 commit 02746dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ export class ProtractorBrowser extends AbstractExtendedWebDriver {
let message = angularTestResult.message;
logger.error(`Could not find Angular on page ${destination} : ${message}`);
throw new Error(
`Angular could not be found on the page ${destination}.` +
`Angular could not be found on the page ${destination}. ` +
`If this is not an Angular application, you may need to turn off waiting for Angular.
Please see
https://github.com/angular/protractor/blob/master/docs/timeouts.md#waiting-for-angular-on-page-load`);
Expand Down

0 comments on commit 02746dd

Please sign in to comment.