0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-30 17:00:40 +01:00
svelte/test/runtime/samples/default-data-function/_config.js

9 lines
202 B
JavaScript
Raw Normal View History

export default {
html: '<h1>Hello world!</h1>',
test({ assert, component, target }) {
component.name = () => 'everybody';
assert.htmlEqual( target.innerHTML, '<h1>Hello everybody!</h1>' );
}
};