So, if I am testing pages in a vacuum without much interaction with the backend, it works great. I am having issues with actually interacting with my UI if it hits any type of s
Here's a simpler way of handling a mutation with cy.request
cy.request
const mutation = ` mutation { updateUser(id: 1, firstName: "test") { firstName lastName id role } }` cy.request({ url: url, method: 'POST', body: { query: mutation }, headers: { Authorization: `Bearer ${token}`, }, })