export default { get props() { return { condition: false }; }, test({ assert, component, window }) { assert.equal(window.document.title, ''); component.condition = true; assert.equal(window.document.title, 'woo!!!'); } };