mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-08 23:46:13 +00:00
19 lines
498 B
Plaintext
19 lines
498 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ng e2e
|
|
|
|
> Build and serve an Angular application, then run end-to-end tests.
|
|
> Note: Available `e2e` packages include Playwright, Cypress, Nightwatch, WebdriverIO, and Puppeteer.
|
|
> More information: <https://angular.dev/cli/e2e>.
|
|
|
|
- Run end-to-end tests:
|
|
|
|
`ng {{[e|e2e]}}`
|
|
|
|
- Run end-to-end tests using a specific configuration:
|
|
|
|
`ng {{[e|e2e]}} {{[-c|--configuration]}} {{development|production|...}}`
|