-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(e2e): use protractor api #4527
Conversation
e8b2066
to
ab02a2e
Compare
@vikerman Please review this from the protractor side :) |
658f964
to
6120c0f
Compare
if (e2eTaskOptions.webdriverUpdate) { | ||
// webdriver-manager can only be accessed via a deep import from within | ||
// protractor/node_modules. A double deep import if you will. | ||
const webdriverUpdate = requireProjectModule(projectRoot, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be ok for now - This interface is not changing for now. Will see how we can make this public for the future.
Uses existing Protractor API to run it directly instead of using `npm run e2e`. Also adds support for the following flags: `--serve`, `--config`, `--specs`, `--element-explorer`, `--webdriver-update`. Fix angular#4256 Fix angular#4478 BREAKING CHANGE: `ng e2e` no longer needs `ng serve` to be running.
6120c0f
to
48f8344
Compare
Uses existing Protractor API to run it directly instead of using `npm run e2e`. Also adds support for the following flags: `--serve`, `--config`, `--specs`, `--element-explorer`, `--webdriver-update`. Fix angular#4256 Fix angular#4478 BREAKING CHANGE: `ng e2e` no longer needs `ng serve` to be running.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Uses existing Protractor API to run it directly instead of using
npm run e2e
.Also adds support for the following flags:
--serve
,--config
,--specs
,--element-explorer
,--webdriver-update
.Fix #4256
Fix #4478
Close #1054
BREAKING CHANGE:
ng e2e
no longer needsng serve
to be running.