我正在我的应用代码中这样做:
const xhr = new XMLHttpRequest();
xhr.open("GET", "https://api.gizconnection.com/labels", true);
xhr.setRequestHeader("Authorization", "Bearer " + authService.getToken());
xhr.send(null);
在我的测试中,我有:
it.only("test", () => {
cy.server();
cy.route("GET", "https://api.gizconnection.com/labels", [
{ text: "foo" }
]);
});
但不匹配,我要疯了。
在CY的日志中,我看到了请求,但说不匹配:
我在Chrome的devtools中看到了它,但是我得到的响应是来自服务器的真实响应:
有什么想法吗?