我为一个项目设置了一个小的测试环境。它应该使用mocha
和chai
进行单元测试。我已经设置了一个html
文件作为测试运行程序:
<!DOCTYPE html>
<html>
<head>
<title>Mocha Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
<script>mocha.setup('bdd')</script>
<script src="test/chaiTest.js"></script>
<script>mocha.run();</script>
</body>
</html>
chaiTest.js
文件包含以下简单测试:
let assert = chai.assert;
describe('simple test', () => {
it('should be equal', () => {
assert.equal(1, 1);
});
});
现在,当我在浏览器中调用测试运行程序时,结果会正确显示。它工作正常。但是当我在控制台上运行mocha
时,它告诉我chai is not defined
.
因此,为了使它在控制台中工作,我只需在测试文件的首行中添加chai
require
。
let chai = require('chai');
现在测试在控制台中运行良好,但是当我在浏览器中执行测试时,它告诉我require
undefined
。
我知道,这些错误在这里完全有意义!它们是未定义的。但是有没有办法用mocha
和chai
编写测试,并让它们在浏览器和控制台中执行?
我知道我可以为浏览器和控制台创建两个测试文件。但这很难维持。所以我想写一个测试文件,在两种环境中都能正确执行......
我现在自己找到了解决方案。需要使用配置文件进行chai
。就像我的情况一样,我称之为chaiconf.js
.在此文件中可以写入默认设置chai
。每次测试之前都需要此文件。
我的chaiconf.js
:
let chai = require("chai");
// print stack trace on assertion errors
chai.config.includeStack = true;
// register globals
global.AssertionError = chai.AssertionError;
global.Assertion = chai.Assertion;
global.expect = chai.expect;
global.assert = chai.assert;
// enable should style
chai.should();
现在将此配置附加到每个测试。为此,请在package.json
中创建一个脚本条目:
"scripts": {
"test": "mocha --require chaiconf.js"
},
现在,每当您在控制台中使用npm test
时,在测试之前都需要chaiconf.js
,并使chai
全局可用,就像在浏览器中一样。
没有配置文件的另一种方法是使用内联决策来接收chai
:
let globChai = typeof require === 'undefined' ? chai : require('chai');