2016-12-08 21:15:52 +01:00
|
|
|
export default {
|
|
|
|
html: '<h1>Hello world!</h1>',
|
|
|
|
|
2018-12-16 01:18:03 +01:00
|
|
|
test({ assert, component, target }) {
|
|
|
|
component.name = () => 'everybody';
|
2016-12-08 21:15:52 +01:00
|
|
|
assert.htmlEqual( target.innerHTML, '<h1>Hello everybody!</h1>' );
|
|
|
|
}
|
|
|
|
};
|