### GET Request with query params
GET http://jsonplaceholder.typicode.com/comments?postId=1
?? status == 200
?? js response.parsedBody.length > 0
?? js response.parsedBody.every(it => it.postId == 1)
in the example above, even though the syntax for the .every() is correct, this assertion fails with the following error: SyntaxError: Unexpected token ';'.
in the example above, even though the syntax for the .every() is correct, this assertion fails with the following error:
SyntaxError: Unexpected token ';'.