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
{{ message }}
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
Currently, the validation of 4xx codes randomly selects one of the properties that, when invalidated, will cause the desired error response. To improve the coverage and remove the possibility of flaky tests (due to a faulty property not being hit every test run), this should be changed.
Target implementation:
loop over all properties, return generator with each invalidated data set
remove every required property
violate every constraint
invalid type for each property
perform request for each invalidated data set and perform all validations
Question: fail test case on first fail or continue with remaining properties / invalidations?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, the validation of 4xx codes randomly selects one of the properties that, when invalidated, will cause the desired error response. To improve the coverage and remove the possibility of flaky tests (due to a faulty property not being hit every test run), this should be changed.
Target implementation:
The text was updated successfully, but these errors were encountered: