I'm just getting started so I'm probably doing something wrong but this test passes. I'm comparing google.com and yahoo.com, so I'd expect it to fail.
const Niffy = require('niffy');
describe('testing niffy', function () {
let niffer = null;
before(function () {
niffer = new Niffy(
'https://www.google.com',
'https://www.yahoo.com',
{ show: true }
);
});
it('/', function* () {
yield niffer.test('/');
});
after(function* () {
yield niffer.end();
});
});