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
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This package contains [Architect builders](/packages/angular_devkit/architect/RE
13
13
| karma | Execute unit tests using [Karma](https://github.com/karma-runner/karma) test runner. |
14
14
| ng-packagr | Build and package an Angular library in [Angular Package Format (APF)](https://docs.google.com/document/d/1CZC2rcpxffTDfRDs6p1cfbmKNLA6x5O-NtkJglDaBVs/preview) format using [ng-packagr](https://github.com/ng-packagr/ng-packagr). |
15
15
| server | Build an Angular application targeting a [Node.js](https://nodejs.org) environment. |
16
-
| protractor | Run end-to-end tests using [Protractor](https://www.protractortest.org/) framework.|
16
+
| protractor |**Deprecated** - Run end-to-end tests using [Protractor](https://www.protractortest.org/) framework. |
Copy file name to clipboardExpand all lines: packages/angular_devkit/build_angular/src/protractor/index.ts
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -73,11 +73,11 @@ async function updateWebdriver() {
73
73
74
74
// run `webdriver-manager update --standalone false --gecko false --quiet`
75
75
// if you change this, update the command comment in prev line
76
-
returnwebdriverUpdate.program.run(({
76
+
returnwebdriverUpdate.program.run({
77
77
standalone: false,
78
78
gecko: false,
79
79
quiet: true,
80
-
}asunknown)asJSON);
80
+
}asunknownasJSON);
81
81
}
82
82
83
83
export{ProtractorBuilderOptions};
@@ -89,6 +89,10 @@ export async function execute(
89
89
options: ProtractorBuilderOptions,
90
90
context: BuilderContext,
91
91
): Promise<BuilderOutput>{
92
+
context.logger.warn(
93
+
'Protractor has been deprecated including its support in the Angular CLI. For additional information and alternatives, please see https://github.com/angular/protractor/issues/5502.',
0 commit comments