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

Commit 02746dd

Browse files
iphydfqiyigg
authored andcommitted
fix(browser): Add space after full stop in error message. (#4594)
Linkifiers interpret the ".If" at the end of the URL as part of the URL.
1 parent 7f968e0 commit 02746dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/browser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ export class ProtractorBrowser extends AbstractExtendedWebDriver {
934934
let message = angularTestResult.message;
935935
logger.error(`Could not find Angular on page ${destination} : ${message}`);
936936
throw new Error(
937-
`Angular could not be found on the page ${destination}.` +
937+
`Angular could not be found on the page ${destination}. ` +
938938
`If this is not an Angular application, you may need to turn off waiting for Angular.
939939
Please see
940940
https://github.com/angular/protractor/blob/master/docs/timeouts.md#waiting-for-angular-on-page-load`);

0 commit comments

Comments
 (0)