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: adev/src/content/guide/testing/overview.md
+84-39Lines changed: 84 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
Testing your Angular application helps you check that it is working as you expect. Unit tests are crucial for catching bugs early, ensuring code quality, and facilitating safe refactoring.
4
4
5
-
NOTE: This guide focuses on the default testing setup for new Angular CLI projects. If you are migrating an existing project from Karma to Vitest, see the [Migrating from Karma to Vitest guide](guide/testing/migrating-to-vitest). While Vitest is the default test runner, Karma is still fully supported. For information on testing with Karma, see the [Karma testing guide](guide/testing/karma).
5
+
NOTE: This guide covers the default testing setup for new Angular CLI projects, which uses Vitest. If you are migrating an existing project from Karma, see the [Migrating from Karma to Vitest guide](guide/testing/migrating-to-vitest). Karma is still supported; for more information, see the [Karma testing guide](guide/testing/karma).
6
6
7
7
## Set up for testing
8
8
9
-
The Angular CLI downloads and installs everything you need to test an Angular application with the [Vitest testing framework](https://vitest.dev). By default, new projects include `vitest` and `jsdom`.
9
+
The Angular CLI downloads and installs everything you need to test an Angular application with the [Vitest testing framework](https://vitest.dev). New projects include `vitest` and `jsdom` by default.
10
10
11
-
Vitest runs your unit tests in a Node.js environment, using `jsdom` to emulate the DOM. This allows for faster test execution by avoiding the overhead of launching a browser. You can also use `happy-dom` as an alternative by installing it and removing`jsdom`. The CLI will automatically detect and use `happy-dom`if it is present.
11
+
Vitest runs your unit tests in a Node.js environment. To simulate the browser's DOM, Vitest uses a library called `jsdom`. This allows for faster test execution by avoiding the overhead of launching a browser. You can swap `jsdom` for an alternative like `happy-dom`by installing it and uninstalling`jsdom`. Currently, `jsdom`and `happy-dom`are the supported DOM emulation libraries.
12
12
13
-
The project you create with the CLI is immediately ready to test. Just run the [`ng test`](cli/test) CLI command:
13
+
The project you create with the CLI is immediately ready to test. Run the [`ng test`](cli/test) command:
14
14
15
15
```shell
16
16
ng test
@@ -31,26 +31,28 @@ The console output looks like this:
The `ng test` command also watches for changes. To see this in action, make a small change to `app.ts`and save it. The tests run again, and the new results appear in the console.
34
+
The `ng test` command also watches your files for changes. If you modify a file and save it, the tests will run again.
35
35
36
36
## Configuration
37
37
38
-
The Angular CLI handles most of the Vitest configuration for you. For many common use cases, you can adjust the test behavior by modifying options directly in your `angular.json` file.
38
+
The Angular CLI handles most of the Vitest configuration for you. You can customize the test behavior by modifying the `test` target options in your `angular.json` file.
39
39
40
-
### Built-in configuration options
41
-
42
-
You can change the following options in the `test` target of your `angular.json` file:
40
+
### Angular.json options
43
41
44
42
-`include`: Glob patterns for files to include for testing. Defaults to `['**/*.spec.ts', '**/*.test.ts']`.
45
43
-`exclude`: Glob patterns for files to exclude from testing.
46
44
-`setupFiles`: A list of paths to global setup files (e.g., polyfills or global mocks) that are executed before your tests.
47
45
-`providersFile`: The path to a file that exports a default array of Angular providers for the test environment. This is useful for setting up global test providers which are injected into your tests.
48
46
-`coverage`: A boolean to enable or disable code coverage reporting. Defaults to `false`.
49
-
-`browsers`: An array of browser names to run tests in (e.g., `["chromium"]`). Requires a browser provider to be installed.
47
+
-`browsers`: An array of browser names to run tests in a real browser (e.g., `["chromium"]`). Requires a browser provider to be installed. See the [Running tests in a browser](#running-tests-in-a-browser) section for more details.
48
+
49
+
### Global test setup and providers
50
+
51
+
The `setupFiles` and `providersFile` options are particularly useful for managing global test configuration.
50
52
51
53
For example, you could create a `src/test-providers.ts` file to provide `provideHttpClientTesting` to all your tests:
@@ -73,11 +75,7 @@ You would then reference this file in your `angular.json`:
73
75
"test": {
74
76
"builder": "@angular/build:unit-test",
75
77
"options": {
76
-
"include": ["src/**/*.spec.ts"],
77
-
"setupFiles": ["src/test-setup.ts"],
78
-
"providersFile": "src/test-providers.ts",
79
-
"coverage": true,
80
-
"browsers": ["chromium"]
78
+
"providersFile": "src/test-providers.ts"
81
79
}
82
80
}
83
81
}
@@ -86,13 +84,15 @@ You would then reference this file in your `angular.json`:
86
84
}
87
85
```
88
86
89
-
### Advanced: Custom Vitest configuration
87
+
HELPFUL: When creating new TypeScript files for test setup or providers, like `src/test-providers.ts`, ensure they are included in your project's test TypeScript configuration file (typically `tsconfig.spec.json`). This allows the TypeScript compiler to properly process these files during testing.
90
88
91
-
For advanced use cases, you can provide a custom Vitest configuration file.
89
+
### Advanced Vitest configuration
92
90
93
-
IMPORTANT: While using a custom configuration enables advanced options, the Angular team does not provide direct support for the specific contents of the configuration file or for any third-party plugins used within it. The CLI will also override certain properties (`test.projects`, `test.include`) to ensure proper operation.
91
+
For advanced use cases, you can provide a custom Vitest configuration file using the `configFile` option in `angular.json`.
94
92
95
-
You can create a Vitest configuration file (e.g., `vitest-base.config.ts`) and reference it in your `angular.json` using the `runnerConfig` option.
93
+
IMPORTANT: While using a custom configuration enables advanced options, the Angular team does not provide support for the contents of the configuration file or for any third-party plugins. The CLI will also override certain properties (`test.projects`, `test.include`) to ensure proper integration.
94
+
95
+
You can create a Vitest configuration file (e.g., `vitest-base.config.ts`) and reference it in your `angular.json`:
96
96
97
97
```json
98
98
{
@@ -119,24 +119,41 @@ ng generate config vitest
119
119
120
120
This creates a `vitest-base.config.ts` file that you can customize.
121
121
122
-
HELPFUL: Read more about Vitest configuration in the [Vitest configuration guide](https://vitest.dev/config/).
122
+
HELPFUL: Read more about Vitest configuration in the [official Vitest documentation](https://vitest.dev/config/).
123
123
124
124
## Code coverage
125
125
126
-
You can generate code coverage reports by adding the `--coverage` flag to the `ng test` command. The report is generated in the `coverage/` directory.
126
+
You can generate a code coverage report by adding the `--coverage` flag to the `ng test` command. The report is generated in the `coverage/` directory.
127
127
128
-
For more detailed information on prerequisites, enforcing coverage thresholds, and advanced configuration, see the [Code coverage guide](guide/testing/code-coverage).
128
+
For more detailed information, see the [Code coverage guide](guide/testing/code-coverage).
129
129
130
130
## Running tests in a browser
131
131
132
132
While the default Node.js environment is faster for most unit tests, you can also run your tests in a real browser. This is useful for tests that rely on browser-specific APIs (like rendering) or for debugging.
133
133
134
-
To run tests in a browser, you must first install a browser provider.
134
+
To run tests in a browser, you must first install a browser provider. Read more about Vitest's browser mode in the [official documentation](https://vitest.dev/guide/browser).
135
+
136
+
Once the provider is installed, you can run your tests in the browser by configuring the `browsers` option in `angular.json` or by using the `--browsers` CLI flag. Tests run in a headed browser by default. If the `CI` environment variable is set, headless mode is used instead. To explicitly control headless mode, you can suffix the browser name with `Headless` (e.g., `chromiumHeadless`).
137
+
138
+
```bash
139
+
# Example for Playwright (headed)
140
+
ng test --browsers=chromium
141
+
142
+
# Example for Playwright (headless)
143
+
ng test --browsers=chromiumHeadless
144
+
145
+
# Example for WebdriverIO (headed)
146
+
ng test --browsers=chrome
147
+
148
+
# Example for WebdriverIO (headless)
149
+
ng test --browsers=chromeHeadless
150
+
```
151
+
135
152
Choose one of the following browser providers based on your needs:
136
153
137
-
-**Playwright**: `@vitest/browser-playwright` for Chromium, Firefox, and WebKit.
138
-
-**WebdriverIO**: `@vitest/browser-webdriverio` for Chrome, Firefox, Safari, and Edge.
139
-
-**Preview**: `@vitest/browser-preview` for Webcontainer environments (like StackBlitz).
154
+
### Playwright
155
+
156
+
[Playwright](https://playwright.dev/) is a browser automation library that supports Chromium, Firefox, and WebKit.
140
157
141
158
<docs-code-multifile>
142
159
<docs-codeheader="npm"language="shell">
@@ -153,33 +170,61 @@ Choose one of the following browser providers based on your needs:
153
170
</docs-code>
154
171
</docs-code-multifile>
155
172
156
-
Once the provider is installed, you can run your tests in the browser using the `--browsers` flag:
173
+
### WebdriverIO
157
174
158
-
```bash
159
-
# Example for Playwright
160
-
ng test --browsers=chromium
175
+
[WebdriverIO](https://webdriver.io/) is a browser and mobile automation test framework that supports Chrome, Firefox, Safari, and Edge.
bun add --dev @vitest/browser-webdriverio webdriverio
189
+
</docs-code>
190
+
</docs-code-multifile>
191
+
192
+
### Preview
193
+
194
+
The `@vitest/browser-preview` provider is designed for Webcontainer environments like StackBlitz and is not intended for use in CI/CD.
195
+
196
+
<docs-code-multifile>
197
+
<docs-codeheader="npm"language="shell">
198
+
npm install --save-dev @vitest/browser-preview
199
+
</docs-code>
200
+
<docs-codeheader="yarn"language="shell">
201
+
yarn add --dev @vitest/browser-preview
202
+
</docs-code>
203
+
<docs-codeheader="pnpm"language="shell">
204
+
pnpm add -D @vitest/browser-preview
205
+
</docs-code>
206
+
<docs-codeheader="bun"language="shell">
207
+
bun add --dev @vitest/browser-preview
208
+
</docs-code>
209
+
</docs-code-multifile>
165
210
166
-
Headless mode is enabled automatically if the `CI` environment variable is set. Otherwise, tests will run in a headed browser.
211
+
HELPFUL: For more advanced browser-specific configuration, see the [Advanced Vitest configuration](#advanced-vitest-configuration) section.
167
212
168
213
## Other test frameworks
169
214
170
-
You can also unit test an Angular application with other testing libraries and test runners. Each library and runner has its own distinctive installation procedures, configuration, and syntax.
215
+
You can also unit test an Angular application with other testing libraries and test runners. Each library and runner has its own installation procedures, configuration, and syntax.
171
216
172
217
## Testing in continuous integration
173
218
174
-
A robust test suite is a key part of a continuous integration (CI) pipeline. CI servers let you set up your project repository so that your tests run on every commit and pull request.
219
+
A robust test suite is a key part of a continuous integration (CI) pipeline. CI servers let you automate your tests to run on every commit and pull request.
175
220
176
-
To test your Angular application in a continuous integration (CI) server, you can typically run the standard test command:
221
+
To test your Angular application in a CI server, run the standard test command:
177
222
178
223
```shell
179
224
ng test
180
225
```
181
226
182
-
Most CI servers set a `CI=true` environment variable, which `ng test` detects. This automatically runs your tests in the appropriate non-interactive, single-run mode.
227
+
Most CI servers set a `CI=true` environment variable, which `ng test` detects. This automatically configures your tests to run in a non-interactive, single-run mode.
183
228
184
229
If your CI server does not set this variable, or if you need to force single-run mode manually, you can use the `--no-watch` and `--no-progress` flags:
0 commit comments