export default { html: ` byeworld hello world $$slots: {"a":true,"default":true} Slot b is not available bye world hello world $$slots: {"a":true,"b":true,"default":true}
hello world
`, async test({ assert, target, component }) { assert.equal(component.getA(), ''); assert.equal(component.getB(), 'foo'); } };