@@ -3,95 +3,157 @@ id: presets
3
3
title : Presets
4
4
---
5
5
6
- ### The presets
6
+ In Jest, ** presets** are pre-defined configurations that help streamline and standardize the process of setting up testing environments.
7
+ They allow developers to quickly configure Jest with specific transformers, file extensions, and other options.
7
8
8
- ` jest-preset-angular ` comes with 2 presets, covering most of the project's base configuration:
9
+ ` jest-preset-angular ` provides very opinionated presets and based on what we found to be useful.
9
10
10
- | Preset name | Description |
11
- | ------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |
12
- | ` jest-preset-angular/presets/default ` <br />or ` jest-preset-angular ` | TypeScript, JavaScript and HTML files (` js ` , ` .ts ` , ` .html ` ) will be transformed by ` jest-preset-angular ` to ** CommonJS** syntax. |
13
- | ` jest-preset-angular/presets/defaults-esm ` <br /> | TypeScript, JavaScript and HTML files (` js ` , ` .ts ` , ` .html ` ) will be transformed by ` jest-preset-angular ` to ** ESM** syntax. |
11
+ ::: important
12
+
13
+ The current best practice for using presets is to call one of the utility functions below to create (and optionally extend) presets. Legacy presets are listed at the bottom of the page.
14
14
15
- ### Basic usage
15
+ :::
16
16
17
- In most cases, simply setting the ` preset ` key to the desired preset name in your Jest config should be enough to start
18
- using TypeScript with Jest (assuming you added ` jest-preset-angular ` to your ` devDependencies ` of course):
17
+ ## Functions
19
18
20
- ``` ts title="jest.config.ts" tab={"label": "TypeScript CJS"}
19
+ import TOCInline from '@theme/TOCInline ';
20
+
21
+ <TOCInline toc ={toc.slice(1)} />
22
+
23
+ ---
24
+
25
+ ### ` createCjsPreset(options) `
26
+
27
+ Create a configuration to process JavaScript/TypeScript/HTML/SVG files (` ts|js|mjs|html|svg ` ).
28
+
29
+ #### Parameters
30
+
31
+ - ` options ` (** OPTIONAL** )
32
+ - ` tsconfig ` : see more at [ tsconfig options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/tsconfig )
33
+ - ` isolatedModules ` : see more at [ isolatedModules options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/isolatedModules )
34
+ - ` astTransformers ` : see more at [ astTransformers options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/astTransformers )
35
+ - ` diagnostics ` : see more at [ diagnostics options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/diagnostics )
36
+
37
+ #### Returns
38
+
39
+ An object contains Jest config:
40
+
41
+ ``` ts
42
+ type CjsPresetTransformerOptions = {
43
+ tsconfig: string ;
44
+ stringifyContentPathRegex: string ;
45
+ };
46
+
47
+ type CjsPresetType = {
48
+ testEnvironment: string ;
49
+ moduleFileExtensions: Array <string >;
50
+ snapshotSerializers: Array <string >;
51
+ transformIgnorePatterns: Array <string >;
52
+ transform: {
53
+ ' ^.+.tsx?$' : [' ^.+\\ .(ts|js|mjs|html|svg)$' , CjsPresetTransformerOptions ];
54
+ };
55
+ };
56
+ ```
57
+
58
+ #### Example:
59
+
60
+ ``` ts title="jest.config.ts"
61
+ import presets from ' jest-preset-angular/presets' ;
21
62
import type { Config } from ' jest' ;
22
63
64
+ const presetConfig = presets .createCjsPreset ({
65
+ // ...options
66
+ });
67
+
23
68
const jestConfig: Config = {
24
- // [...]
25
- // Replace `jest-preset-angular` with the preset you want to use
26
- // from the above list
27
- preset: ' jest-preset-angular' ,
69
+ ... presetConfig ,
28
70
};
29
71
30
72
export default jestConfig ;
31
73
```
32
74
33
- ``` ts title="jest.config.mts" tab={"label": "TypeScript ESM"}
75
+ ### ` createEsmPreset(options) `
76
+
77
+ Create a configuration to process JavaScript/TypeScript/HTML/SVG files (` ts|js|html|svg ` ).
78
+
79
+ #### Parameters
80
+
81
+ - ` options ` (** OPTIONAL** )
82
+ - ` tsconfig ` : see more at [ tsconfig options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/tsconfig )
83
+ - ` isolatedModules ` : see more at [ isolatedModules options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/isolatedModules )
84
+ - ` astTransformers ` : see more at [ astTransformers options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/astTransformers )
85
+ - ` diagnostics ` : see more at [ diagnostics options page] ( https://kulshekhar.github.io/ts-jest/docs/getting-started/options/diagnostics )
86
+
87
+ #### Returns
88
+
89
+ An object contains Jest config:
90
+
91
+ ``` ts
92
+ type EsmPresetTransformerOptions = {
93
+ tsconfig: string ;
94
+ stringifyContentPathRegex: string ;
95
+ useEsm: true ;
96
+ };
97
+
98
+ type EsmPresetType = {
99
+ testEnvironment: string ;
100
+ moduleFileExtensions: Array <string >;
101
+ snapshotSerializers: Array <string >;
102
+ transformIgnorePatterns: Array <string >;
103
+ transform: {
104
+ ' ^.+.tsx?$' : [' ^.+\\ .(ts|js|html|svg)$' , EsmPresetTransformerOptions ];
105
+ };
106
+ };
107
+ ```
108
+
109
+ #### Example:
110
+
111
+ ``` ts title="jest.config.mts"
112
+ import presets from ' jest-preset-angular/presets' ;
34
113
import type { Config } from ' jest' ;
35
114
115
+ const presetConfig = presets .createEsmPreset ({
116
+ // ...options
117
+ });
118
+
36
119
const jestConfig: Config = {
37
- // [...]
38
- // Replace `jest-preset-angular` with the preset you want to use
39
- // from the above list
40
- preset: ' jest-preset-angular' ,
120
+ ... presetConfig ,
41
121
};
42
122
43
123
export default jestConfig ;
44
124
```
45
125
46
- ### Advanced
47
-
48
- All presets come with default ` ts-jest ` config options.
49
- If you want to override any of the options, you'll need to use the JavaScript version of Jest config,
50
- copy the original options and override the options you need:
126
+ ### Legacy presets
51
127
52
- ::: important
128
+ ::: warning
53
129
54
- If you choose to override ` transform ` in order to point at a specific tsconfig, you will need to make sure that original ` ts-jest `
55
- options provided through the default preset are defined to the ` transform ` section too, otherwise you will get
56
- errors.
130
+ ` jest-preset-angular ` ** DON'T RECOMMEND** to use legacy presets because this approach is not flexible to configure Jest configuration.
131
+ These legacy presets will be removed in the next major release and users are ** HIGHLY RECOMMENDED** to migrate to use the above utility functions.
57
132
58
133
:::
59
134
135
+ | Preset name | Description |
136
+ | ------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |
137
+ | ` jest-preset-angular/presets/default ` <br />or ` jest-preset-angular ` | TypeScript, JavaScript and HTML files (` js ` , ` .ts ` , ` .html ` ) will be transformed by ` jest-preset-angular ` to ** CommonJS** syntax. |
138
+ | ` jest-preset-angular/presets/defaults-esm ` <br /> | TypeScript, JavaScript and HTML files (` js ` , ` .ts ` , ` .html ` ) will be transformed by ` jest-preset-angular ` to ** ESM** syntax. |
139
+
140
+ #### Example
141
+
60
142
``` ts title="jest.config.ts" tab={"label": "TypeScript CJS"}
61
143
import type { Config } from ' jest' ;
62
- import presets from ' jest-preset-angular/presets' ;
63
144
64
145
const jestConfig: Config = {
65
- // [...]
66
- transform: {
67
- ' ^.+\\ .(ts|js|mjs|html|svg)$' : [
68
- ' jest-preset-angular' ,
69
- {
70
- ... presets .defaultTransformerOptions ,
71
- // [...your overriden options]
72
- },
73
- ],
74
- },
146
+ preset: ' jest-preset-angular' ,
75
147
};
76
148
77
149
export default jestConfig ;
78
150
```
79
151
80
152
``` ts title="jest.config.mts" tab={"label": "TypeScript ESM"}
81
153
import type { Config } from ' jest' ;
82
- import presets from ' jest-preset-angular/presets' ;
83
154
84
155
const jestConfig: Config = {
85
- // [...]
86
- transform: {
87
- ' ^.+\\ .(ts|js|mjs|html|svg)$' : [
88
- ' jest-preset-angular' ,
89
- {
90
- ... presets .defaultTransformerOptions ,
91
- // [...your overriden options]
92
- },
93
- ],
94
- },
156
+ preset: ' jest-preset-angular/presets/defaults-esm' ,
95
157
};
96
158
97
159
export default jestConfig ;
0 commit comments