У меня есть приложение Angular, использующее QraphQL.Я пишу тест на кипарисе, который выглядит так:
it('should do something', () => {
cy.server();
cy.route('POST', '/graphql', 'fixture:data1.json');
// data is loaded from the endpoint to populate the page
cy.visit('http://localhost:3000/#/something/somethingElse');
// when the button is clicked, the same endpoint is called again,
// but now I need it to deliver some other data.
cy.get('button')
.click();
});
Может кто-нибудь дать мне способ настроить это?Заранее спасибо