You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
In the client side script for findBindings, in the regular expression where the code matches if is an exact match or not the end and beggining markers for regular expressions: $ and ^ are switched.
In the client side script for findBindings, in the regular expression where the code matches if is an exact match or not the end and beggining markers for regular expressions: $ and ^ are switched.
https://github.com/angular/protractor/blob/1.3.1/lib/clientsidescripts.js#L66
'({|\\s|$|\\|)' + binding + '(}|\\s|^|\\|)')
I guess it should be:
'({|\\s|^|\\|)' + binding + '(}|\\s|$|\\|)')
The text was updated successfully, but these errors were encountered: