Files
zitadel/apps/login/cypress/support/mock.ts

27 lines
485 B
TypeScript
Raw Normal View History

2023-06-15 22:42:13 +02:00
export function removeStub(service: string, method: string) {
return cy.request({
url: "http://localhost:22220/v1/stubs",
method: "DELETE",
qs: {
2023-07-04 13:25:40 +02:00
service,
method,
2023-06-15 22:42:13 +02:00
},
});
}
export function addStub(service: string, method: string, out?: any) {
return cy.request({
url: "http://localhost:22220/v1/stubs",
method: "POST",
body: {
stubs: [
{
2023-07-04 13:25:40 +02:00
service,
method,
out,
2023-06-15 22:42:13 +02:00
},
],
},
});
}