我的目标是使用插件chai-things进行简单的测试-使用puppeteer,mocha和chai。 (我已经完成了所有设置,并且测试按预期运行)现在我遇到一个问题,由于chai的'should'属性未定义,我的测试失败了。 请遵循以下步骤:https://www.chaijs.com/plugins/chai-things/
我已经实现了便利并运行:
const chai = require("chai");
chai.should();
chai.use(require('chai-things'));
describe('testing: the truth', function () {
it('will pass if below set value', function () {
expect[4, 11, 15].should.all.be.below(20)
});
});
运行“ mocha”测试命令后,我得到: TypeError:无法读取未定义的属性“应该”