- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Nestjs 中为我的 Controller 编写测试。我希望一组员工包含对象 {id:1, firstname: 'john', lastname:'Dole'}
.所以我写:
it('should get an employee', () => {
return controller.findAll('john').then((data) => {
expect(data).arrayContaining([
{
id: 1,
firstname: 'john',
lastname: 'Dole',
},
]);
});
});
但出现错误 roperty 'arrayContaining' does not exist on type 'JestMatchers<Employee[]>'
我应该在 Nestjs 中安装额外的包或更新 jest 吗?我已经安装了 "@nestjs/testing": "^7.6.15",
最佳答案
arrayContaining
它本身不做任何匹配,而是返回一个可以与例如一起使用的匹配器。 toEqual
,像这样:
expect(data).toEqual(expect.arrayContaining([
{
id: 1,
firstname: 'john',
lastname: 'Dole',
},
]));
关于typescript - 'arraycontaining' 在类型 'jestmatchers' 上不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68225742/
我在 Nestjs 中为我的 Controller 编写测试。我希望一组员工包含对象 {id:1, firstname: 'john', lastname:'Dole'} .所以我写: it('sho
我有以下 JSON,我想在 name="style"和属性包含 US - 矩形时获取此记录 { "id": "5ede1c0f1b4b335ed3bf3bca", "attribute
我有以下 JSON,我想在 name="style"和属性包含 US - 矩形时获取此记录 { "id": "5ede1c0f1b4b335ed3bf3bca", "attribute
我的查询是: snapshot = await FirebaseFirestore.instance .collection('dialogs') .where
我是一名优秀的程序员,十分优秀!