gpt4 book ai didi

javascript - Jasmine with Express - 测试响应重定向

转载 作者:太空宇宙 更新时间:2023-11-04 02:36:39 25 4
gpt4 key购买 nike

我的 Controller 操作:

//...

this.create = function (req, res) {
return res.redirect('http://www.example.com');
}

//..

使用 Jasmine 如何断言操作重定向到 http://www.example.com?我应该提供一个模拟 res 以便使用 Jasmine spy 对其执行断言吗?

最佳答案

因此,一种测试方法是

expect(response.request.href).toContain("重定向");

但是,这实际上会导航到端点,因此如果您想测试绝对 URL,您实际上会导航到该端点,因此您会受到任何其他重定向和/或互联网问题的影响

关于javascript - Jasmine with Express - 测试响应重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21677697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com