mirror of https://github.com/sveltejs/svelte
15 lines
352 B
15 lines
352 B
export default {
|
|
props: {
|
|
condition: false
|
|
},
|
|
|
|
test({ assert, component, window }) {
|
|
assert.equal(window.document.title, '');
|
|
assert.equal(Boolean(window.document.getElementById('meta')), true);
|
|
|
|
component.condition = true;
|
|
assert.equal(window.document.title, 'woo!!!');
|
|
assert.equal(window.document.getElementById('meta'), null);
|
|
}
|
|
};
|