我正在使用standardJS来测试我的代码。我也在用 Mocha 柴。这样,我得到此行的错误expect an assignment or function call and instead saw an expression.
:
expect(err).to.be.null
但是这条线是正确的,那么我在做什么错呢?
最佳答案
这是两个可能的解决方案:
1.使用 dirty-chai
使用dirty-chai
您可以更改此设置:
expect(err).to.be.null
对此:
expect(err).to.be.null()
像这样使用它:
var chai = require('chai');
var dirtyChai = require('dirty-chai');
var expect = chai.expect
chai.use(dirtyChai);
expect(err).to.be.null()
2.通过在每个测试文件的顶部添加注释来禁用规则
/* eslint-disable no-unused-expressions */
注意:请阅读this comment以获取更多信息。
关于javascript - 使用standardJS在Mocha Chai单元测试中没有未使用的表达式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45079454/