egg应用,某个函数如下:function abc(arg) {
assert(typeof arg === 'string', 'arg should be a string');
// do other thing
// ...}如果传参为非string类型,会触发assert语句,控制台报错。测试用例中,怎么写控制台才不会报错呢?it('should call abc(1) fail', () => {
// how
});
- 2 回答
- 0 关注
- 754 浏览
添加回答
举报
0/150
提交
取消