it('compares equality', function () {
    const tpl = hbs.compile(testString('==='));

    expect(tpl({ a: 1, b: 2 })).to.equal('no');
    expect(tpl({ a: 1, b: 1 })).to.equal('yes');