#Simple angular app with protractor e2e test (Based on https://github.com/byverdu/BussuAngularTest)
Reproducing issue: mochajs/mocha#2157
Required external packages:
- webdriver-manager: https://www.npmjs.com/package/webdriver-manager
- protractor@2: https://github.com/angular/protractor
I installed both globally (npm install -g).
Install app packages:
- npm install
- bower install
Run the app:
- npm start
Run e2e:
- protractor config/protractor-conf.js
Reproducing the bug:
- Test should run and fail (because of wrong assertion).
- Putting ".only" on the "describe" part - test run and fails - OK.
- Putting ".only" on the "it" part - test doesn't run and passed.