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 Feb 26, 2024. It is now read-only.
In step-6, when running npm run protractor, there is the following error:
Failures:
1) PhoneCat App Phone list view should render phone specific links
Message:
Expected undefined to be '/phones/nexus-s'.
Stacktrace:
Error: Expected undefined to be '/phones/nexus-s'.
at /home/jing/code/tutoral/angular-phonecat/test/e2e/scenarios.js:63:35
The fix is to change expect(url.split('#')[1]).toBe('/phones/nexus-s'); to expect(url).toBe('/phones/nexus-s');.
Angular version is 1.3.10. I am using a Ubuntu 14.04 box.