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
* fix: Replace deprecated faker.name with faker.person (#4581) - by @thomashohn
49
+
* fix(wdio): Remove dependency to devtools (#4563) - by @thomashohn
50
+
* fix(typings): wrong defineParameterType (#4548) - by @kobenguyent
51
+
* fix(typing): `Locator.build` complains the empty locator (#4543) - by @kobenguyent
52
+
* fix: add hint to `I.seeEmailAttachment` treats parameter as regular expression (#4629) - by @ngraf
53
+
```
54
+
Add hint to "I.seeEmailAttachment" that under the hood parameter is treated as RegExp.
55
+
When you don't know it, it can cause a lot of pain, wondering why your test fails with I.seeEmailAttachment('Attachment(1).pdf') although it looks just fine, but actually I.seeEmailAttachment('Attachment\\(1\\).pdf is required to make the test green, in case the attachment is called "Attachment(1).pdf" with special character in it.
56
+
```
57
+
* fix(playwright): waitForText fails when text contains double quotes (#4528) - by @DavertMik
58
+
* fix(mock-server-helper): move to stand-alone package: https://www.npmjs.com/package/@codeceptjs/mock-server-helper (#4536) - by @kobenguyent
59
+
* fix(appium): issue with async on runOnIos and runOnAndroid (#4525) - by @kobenguyent
60
+
* fix: push ws messages to array (#4513) - by @kobenguyent
61
+
62
+
📖 *Documentation*
63
+
* fix(docs): typo in ai.md (#4501) - by @tomaculum
64
+
1
65
## 3.6.6
2
66
3
67
❤️ Thanks all to those who contributed to make this release! ❤️
Copy file name to clipboardExpand all lines: docs/configuration.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ After running `codeceptjs init` it should be saved in test root.
29
29
|`tests`|`string`| Pattern to locate CodeceptJS tests. Allows to enter glob pattern or an Array<string> of patterns to match tests / test file names. For tests in JavaScript: ```tests: 'tests/**.test.js' ``` For tests in TypeScript: ```tests: 'tests/**.test.ts' ```|
30
30
|`timeout?`|`number`| Set default tests timeout in seconds. Tests will be killed on no response after timeout. ```timeout: 20, ```|
31
31
|`translation?`|`string`| Enable [localized test commands](https://codecept.io/translation/)|
32
+
|`maskSensitiveData?`|`boolean`| Enable to mask Sensitive Data in console. |
0 commit comments