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
Currently, we have this kind of test to test the list endpoint
check(http.request("GET",`${API_HOST}/tags`,undefined,{ headers }),{"listTag - GET /tags - have two tags, should response 200": (r)=>r.status===200,"listTag - GET /tags - have two tags, should response size=2": (r)=>r.json().size==="2",});
Sadly, it will have chance to get polluted by other testing, we may need to find better way to solve it.
The text was updated successfully, but these errors were encountered:
Context
Currently, we have this kind of test to test the list endpoint
Sadly, it will have chance to get polluted by other testing, we may need to find better way to solve it.
The text was updated successfully, but these errors were encountered: