Hello,
From api-project repo, I am able to delete customer info as it gives me 204 status code. this repo only contains api test code.
However, from UI project repo, it always give me 200 instead of 204, so it never delete after creating using cy.request api.
This UI project repo contains mostly UI testing codes.
Is it something wrong with the cypress version? Please let me if you have similar experience and know the solution.
thanks.
UI project repo version: 12.11.0
api-project repo version: 10.3.1
cy.apiLogin(url, user, pass).then(response => {
token = response.body.token;
cy.deleteInfo(url, token, id);
});