我有一个index.js文件,它正在实现forEach
帮助器,如下所示:
var images = [
{ height: 10, width: 30 },
{ height: 20, width: 90 },
{ height: 54, width: 32 }
];
var areas = [];
images.forEach(function(image) {
return areas.push(image.height * image.width);
});
console.log(areas);
module.exports = images;
我知道解决方案有效,您知道解决方案有效。
然后在我的test.js文件中:
const chai = require("chai");
const images = require("./index.js");
const expect = chai.expect;
describe("areas", () => {
it("contains values", () => {
expect([]).equal([300, 1800, 1728]);
});
});
当我运行
npm test
时,我继续收到AssertionError。我将包括
package.json
文件:{
"name": "my_tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"chai": "4.2.0",
"mocha": "6.0.2"
}
}
我像这样重构了
test.js
文件:const chai = require("chai");
const areas = require("./index.js");
const expect = chai.expect;
describe("areas", () => {
it("contains values", () => {
const areas = [];
expect(areas).equal([300, 1800, 1728]);
});
});
仍然得到AssertionError:
AssertionError: expected [] to equal [ 300, 1800, 1728 ]
+ expected - actual
-[]
+[
+ 300
+ 1800
+ 1728
+]
最佳答案
该错误是由于您使用的Chai方法引起的。 Chai.equal在两个数组之间进行身份比较(===
)。由于这两个数组在内存中不是完全相同的对象,因此即使内容相同,也会始终失败。您需要Chai.eql对所有值进行深度比较。
expect([1,2,3]).equal([1,2,3]) // AssertionError
expect([1,2,3]).eql([1,2,3]) // true
关于javascript - JavaScript:为什么会出现此AssertionError?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54955300/