@@ -1190,6 +1190,12 @@ changes:
|
1190 | 1190 | For each test that is executed, any corresponding test hooks, such as |
1191 | 1191 | `beforeEach()`, are also run. |
1192 | 1192 | **Default:** `undefined`. |
| 1193 | +* `testSkipPatterns` {string|RegExp|Array} A String, RegExp or a RegExp Array, |
| 1194 | + that can be used to exclude running tests whose name matches the provided pattern. |
| 1195 | + Test name patterns are interpreted as JavaScript regular expressions. |
| 1196 | + For each test that is executed, any corresponding test hooks, such as |
| 1197 | +`beforeEach()`, are also run. |
| 1198 | +**Default:** `undefined`. |
1193 | 1199 | * `timeout` {number} A number of milliseconds the test execution will |
1194 | 1200 | fail after. |
1195 | 1201 | If unspecified, subtests inherit this value from their parent. |
|