我正在尝试对GET
请求的响应进行存根处理,该请求基本上返回一个在下拉菜单中填充的数组
我尝试了此代码
// stubbing get a list of schedulers
cy.server()
cy.route({
method: 'GET',
url: '/companies/cccccccc-1111-1111-1111-111111111111/attendance/shift-scheduler/schedulers', // company one
JSON: true,
Response: [
{
id: "eeee3333-1111-1111-1111-111111111111",
first_name: "Admin One",
}
]
})
但是,即使我没有收到任何错误,该列表仍然没有填写,但是,我无法在cypress的UI中看到存根GET
的要求。我做错什么了吗?