codeceptjs
Advanced tools
Changelog
3.6.9
❤️ Thanks all to those who contributed to make this release! ❤️
🐛 Hot Fixes
fix: could not run tests due to missing invisi-data
lib - by @kobenguyent
Changelog
3.6.8
❤️ Thanks all to those who contributed to make this release! ❤️
🛩️ Features
export const config: CodeceptJS.MainConfig = {
tests: '**/*.e2e.test.ts',
retry: 4,
output: './output',
maskSensitiveData: true,
emptyOutputFolder: true,
...
I login {"username":"helloworld@test.com","password": "****"}
I send post request "https://localhost:8000/login", {"username":"helloworld@test.com","password": "****"}
› [Request] {"baseURL":"https://localhost:8000/login","method":"POST","data":{"username":"helloworld@test.com","password": "****"},"headers":{}}
› [Response] {"access-token": "****"}
I.sendDeleteRequestWithPayload('/api/users/1', { author: 'john' });
🐛 Bug Fixes
> codeceptjs dry-run --steps --grep "(?=.*Checkout process)"
Locator.build
complains the empty locator (#4543) - by @kobenguyentI.seeEmailAttachment
treats parameter as regular expression (#4629) - by @ngrafAdd hint to "I.seeEmailAttachment" that under the hood parameter is treated as RegExp.
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.
📖 Documentation