'use strict';
var should = require('should');
describe('wtf', function () {
it('compare arrays', function (done) {
[].should.equal([]);
});
});
My tests were working fine until I switched from node 10.26 installed from brew to nvm installed version of 10.33.
Here is the error:
AssertionError: expected [] to equal []
Expected :[]
Actual :[]