Angular CLI ng e2e 命令


本章通过示例解释 ng e2e 命令的语法、参数和选项。这里,e2e 是指端到端。

语法


ng e2e 命令的语法如下:

ng e2e <project> [options]
ng e <project> [options]

ng e2e 构建、提供应用程序,然后使用量角器运行端到端测试用例。选项是可选参数。

论据


ng e2e 命令的参数如下:

序号. 参数和语法 描述
1 <项目> 要测试的项目的名称。

Options


选项是可选参数。

序号. 选项和语法 描述
1 --baseUrl=baseUrl 量角器要连接到的基本 URL。
2 --配置=配置

命名的构建目标,在 angular.json 的“配置”部分中指定。每个命名的目标都伴随着该目标的选项默认配置。显式设置它会覆盖“--prod”标志

别名:-c

3 --devServerTarget=devServerTarget 用于运行测试的开发服务器目标。
4 --grep=grep 执行名称与模式匹配的规范,该模式在内部编译为正则表达式。
5 --help=true|false|json|JSON

在控制台中显示此命令的帮助消息。

默认值:假

6 --主机=主机 主持人聆听。
7 --invertGrep=真|假

反转 'grep' 选项指定的选择。

默认值:假

8 --port 用于为应用程序提供服务的端口。
9 --prod=真|假 “--configuration=production”的简写。如果为 true,则将构建配置设置为生产目标。默认情况下,生产目标是在工作空间配置中设置的,因此所有构建都使用捆绑、有限的 tree-shaking 以及有限的死代码消除。
10 --protractorConfig=量角器配置 量角器配置文件的名称。
11 --specs 覆盖量角器配置中的规范。
12 --套件=套件 量角器配置中的覆盖套件。
13 --webdriverUpdate=true|false

尝试更新网络驱动程序。

默认值:真

首先移动到使用更新的角度项目 ng build command.which 可在 https://www.newbiego.com/angular_cli/angular_cli_ng_build.htm。

现在运行 e2e 命令。

例子


ng e2e 命令示例如下:

\>Node\>NewbieGo> ng e2e
...
chunk {main} main.js, main.js.map (main) 14.3 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 141 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 6.15 kB [entry] [rendered]
chunk {styles} styles.js, styles.js.map (styles) 12.4 kB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 3 MB [initial] [rendered]
Date: 2020-06-06T04--grep=grep15.029Z - Hash: 16f321e3d4599af26622 - Time: 20899ms
** Angular Live Development Server is listening on localhost:4200, open your bro
wser on http:// 本地主机:4200/ **
: Compiled successfully.
...
    workspace-project App
    x should display welcome message
        - Failed: No element found using locator: By(css selector, app-root .content span)
    ...
        From: Task: Run it("should display welcome message") in control flow
    ...
**************************************************
*                    Failures                    *
**************************************************

1) workspace-project App should display welcome message
  - Failed: No element found using locator: By(css selector, app-root .content span)

Executed 1 of 1 spec (1 FAILED) in 2 secs.

现在修复失败更新 app.component.html

app.component.html

<div class="content" role="main">
    <span>{{ title }} app is running!</span>
</div>
<app-goals></app-goals>
<router-outlet></router-outlet>

现在运行 e2e 命令。

例子


ng e2e 命令示例如下:

\>Node\>NewbieGo> ng e2e
...
chunk {main} main.js, main.js.map (main) 14.9 kB [initial] [rendered]
chunk {polyfills} polyfills.js, polyfills.js.map (polyfills) 141 kB [initial] [rendered]
chunk {runtime} runtime.js, runtime.js.map (runtime) 6.15 kB [entry] [rendered]
chunk {styles} styles.js, styles.js.map (styles) 12.4 kB [initial] [rendered]
chunk {vendor} vendor.js, vendor.js.map (vendor) 3 MB [initial] [rendered]
Date: 2020-06-06T04反转 'grep' 选项指定的选择。33.514Z - Hash: 5d8bf2fc7ff59fa390b0 - Time: 10529ms
** Angular Live Development Server is listening on localhost:4200, open your browser on http:// 本地主机:4200/ **
: Compiled successfully.
...
    workspace-project App
        √ should display welcome message

Executed 1 of 1 spec SUCCESS in 2 secs.

ng e2e 还打开浏览器并使用它通过 UI 运行验收测试用例。