我想使用 mocha 和应该按内容比较两个不同的数组。
现在我使用underscore.difference这样做:
测试.js
var should = require('should')
var _ = require('underscore')
_.difference(['one', 'two'], [ 'two']).should.eql([])
执行mocha test.js会产生非常易读的结果:
AssertionError:预期 ['one'] 等于 []
有没有更好的方法来比较两个数组并获得不同的确切信息?