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
When calling getCases() with the type_id parameter supplied, it will only return cases from the last ID in the array.
For example, calling getCases(projectId, { type_id: [9, 14, 23] }) will only return cases for type_id 23. If you move the IDs around in the array, it consistently returns only the test cases for the last value in the array.
Using curl to call the get_cases endpoint does not have this issue.
Expected behavior
Calls to getCases with more than one type ID in the type_id array should return cases for all the types
The text was updated successfully, but these errors were encountered:
Actual behavior
When calling
getCases()
with thetype_id
parameter supplied, it will only return cases from the last ID in the array.For example, calling
getCases(projectId, { type_id: [9, 14, 23] })
will only return cases fortype_id
23. If you move the IDs around in the array, it consistently returns only the test cases for the last value in the array.Using curl to call the
get_cases
endpoint does not have this issue.Expected behavior
Calls to
getCases
with more than one type ID in thetype_id
array should return cases for all the typesThe text was updated successfully, but these errors were encountered: