Commit bf65061a authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

fix(doc): Update NG_TEST_ARGS documentation

parent 2fda0ecb
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
# GitLab CI template for Angular

This project implements a GitLab CI/CD template to build, test and analyse your 
[Angular](https://angular.io/) projects.
This project implements a GitLab CI/CD template to build, test and analyse your [Angular](https://angular.io/) projects.

## Usage

@@ -66,7 +65,7 @@ Those stage are bound to the `build` stage, and uses the following variable:

| Name            | description                                                | default value                                     |
|-----------------|------------------------------------------------------------|---------------------------------------------------|
| `NG_TEST_ARGS`  | Angular [ng test](https://angular.io/cli/test) arguments   | `test --code-coverage --reporters progress,junit` |
| `NG_TEST_ARGS`  | Angular [ng test](https://angular.io/cli/test) arguments   | `test --code-coverage --reporters progress,junit --watch=false --no-progress` |
| `NG_BUILD_ARGS` | Angular [ng build](https://angular.io/cli/build) arguments | `build`                                           |

The next chapters presents some requirements related to your unit tests (using Karma).
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@
    {
      "name": "NG_TEST_ARGS",
      "description": "Angular [ng test](https://angular.io/cli/test) arguments",
      "default": "test --code-coverage --reporters progress,junit",
      "default": "test --code-coverage --reporters progress,junit --watch=false --no-progress",
      "advanced": true
    }
  ],