it('works like the default if helper (basic)', function () {
    const tpl = hbs.compile('{{#if a}}yes{{/if}}');

    expect(tpl({a: true})).to.equal('yes');
    expect(tpl({a: false})).to.equal('');