Skip to content

Commit 3361c19

Browse files
David Shevitzmhevery
authored andcommitted
docs: Remove references to protractor from documentation (#41731)
PR Close #41731
1 parent cb1fcc8 commit 3361c19

File tree

9 files changed

+5
-55
lines changed

9 files changed

+5
-55
lines changed

aio/content/guide/deployment.md

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -703,34 +703,3 @@ You can then run the tests with this configuration
703703
ng test --configuration es5
704704

705705
</code-example>
706-
707-
### Configuring the e2e command
708-
709-
Create an [ES5 serve configuration](guide/deployment#configuring-serve-for-es5) as explained above, and configuration an ES5 configuration for the E2E target.
710-
711-
<code-example language="json">
712-
713-
"e2e": {
714-
"builder": "@angular-devkit/build-angular:protractor",
715-
"options": {
716-
...
717-
},
718-
"configurations": {
719-
"production": {
720-
...
721-
},
722-
"es5": {
723-
"devServerTarget": "&lt;app-name&gt;:serve:es5"
724-
}
725-
}
726-
},
727-
728-
</code-example>
729-
730-
You can then run the `ng e2e` command with this configuration. Make sure to replace `<app-name>` (in `"<app-name>:serve:es5"`) with the actual name of the app, as it appears under `projects` in `angular.json`. For example, if your application name is `myAngularApp` the configuration will become `"devServerTarget": "myAngularApp:serve:es5"`.
731-
732-
<code-example language="none" class="code-shell">
733-
734-
ng e2e --configuration es5
735-
736-
</code-example>

aio/content/guide/npm-packages.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ Package name | Description
121121
**@types/... ** | TypeScript definition files for 3rd party libraries such as Jasmine and Node.js.
122122
**jasmine/... ** | Packages to support the [Jasmine](https://jasmine.github.io/) test library.
123123
**karma/... ** | Packages to support the [karma](https://www.npmjs.com/package/karma) test runner.
124+
[**ts-node**](https://www.npmjs.com/package/ts-node) | TypeScript execution environment and REPL for Node.js.
125+
[**tslint**](https://www.npmjs.com/package/tslint) | A static analysis tool that checks TypeScript code for readability, maintainability, and functionality errors.
124126
[**typescript**](https://www.npmjs.com/package/typescript) | The TypeScript language server, including the *tsc* TypeScript compiler.
125127

126128

aio/content/guide/workspace-config.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ The schemas configure options for the following builders.
108108
* dev-server
109109
* extract-i18n
110110
* karma
111-
* protractor
112111
* server
113112
* tslint
114113

-3.1 KB
Binary file not shown.

aio/content/images/marketing/concept-icons/protractor.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

aio/content/marketing/features.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ <h1 class="banner-headline no-toc no-anchor">Features & Benefits</h1>
8888

8989
<div class="feature">
9090
<div class="feature-title">Testing</div>
91-
<p class="text-body">With Karma for unit tests, you can know if you've broken things every time you save. And Protractor makes your scenario tests run faster and in a stable manner.</p>
91+
<p class="text-body">With Karma for unit tests, you can know if you've broken things every time you save.</p>
9292
</div>
9393

9494
<div class="feature">

aio/content/marketing/presskit.html

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -280,23 +280,6 @@ <h3>Angular Material</h3>
280280
</div>
281281
</div>
282282

283-
<div class="presskit-icon-item">
284-
<div class="presskit-image-container">
285-
<img src="generated/images/marketing/concept-icons/protractor.png" alt="Protractor icon">
286-
</div>
287-
<div>
288-
<h3>Protractor</h3>
289-
<ul class="presskit-links-container">
290-
<li>
291-
<a href="generated/images/marketing/concept-icons/protractor.png" download>Download PNG icon</a>
292-
</li>
293-
<li>
294-
<a href="generated/images/marketing/concept-icons/protractor.svg" download>Download SVG icon</a>
295-
</li>
296-
</ul>
297-
</div>
298-
</div>
299-
300283
<div class="presskit-icon-item">
301284
<div class="presskit-image-container">
302285
<img src="generated/images/marketing/concept-icons/pwa.png" alt="PWA icon">

aio/content/start/start-deployment.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,4 @@ Keep current by following the [Angular blog](https://blog.angular.io/ "Angular b
9191
9292
To support your UX/UI development, see [Angular Material](https://material.angular.io/ "Angular Material web site").
9393
94-
To test your Angular applications, see [Angular Protractor](https://protractor.angular.io/ "Angular Protractor web site").
95-
9694
The Angular community also has an extensive [network of third-party tools and libraries](resources "Angular resources list").

packages/core/src/testability/testability.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ interface WaitCallback {
5050

5151
/**
5252
* The Testability service provides testing hooks that can be accessed from
53-
* the browser and by services such as Protractor. Each bootstrapped Angular
54-
* application on the page will have an instance of Testability.
53+
* the browser. Each bootstrapped Angular application on the page will have
54+
* an instance of Testability.
5555
* @publicApi
5656
*/
5757
@Injectable()

0 commit comments

Comments
 (0)