作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 express.js 应用程序,我在其中使用 supertest 和 should.js 作为我的测试框架。我在测试无序数组中的值时遇到问题。
According to the should.js documentation, the .any function would work here.任何关于如何让它工作的想法都将不胜感激。
{data: [
{username:"Test User 3", ...},
{username:"Test User 6", ...}
]}
response.body.data.any.username.should.equal("Test User 3");
response.body.data.any.username.should.equal("Test User 6");
预先感谢您的帮助!
最佳答案
containDeep怎么样? :
response.body.data.should.containDeep([{ username: "Test User 3" }]);
response.body.data.should.containDeep([{ username: "Test User 6" }]);
关于javascript - 使用 shouldjs 检查无序数组中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27435004/
我有一个 express.js 应用程序,我在其中使用 supertest 和 should.js 作为我的测试框架。我在测试无序数组中的值时遇到问题。 According to the should
获取一个数组,如 ['hello', 'there'] 并将其存储在具有 等模式的 Mongoose 文档中 tags: { type: Array } 使用诸如: Something.create(
我正在编写一个测试 promise 返回函数的测试套件。这些测试的一个共同主题是需要检查返回 promise 的函数在传递无效参数时是否正确抛出错误。我尝试过使用 should.throws,但在查看
我是一名优秀的程序员,十分优秀!