Hey everyone! I'm trying to learn how to test in Cypress, but I've gotten a problem. I create an object in a db with a post request using cy.request, and in response I get an ID of the object created. The next step is using this ID as a variable in the test (searching certain columns etc). However, as the request is asynchronous. do I need to run my whole test inside the .then after the request or is there another way to store and use the returned ID?