mirror of https://github.com/sveltejs/svelte
parent
ccba20bac9
commit
46abb9c712
@ -1 +1,9 @@
|
||||
<p>i am a widget</p>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
onrender () {
|
||||
this.isWidget = true;
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
@ -1,9 +1,7 @@
|
||||
import Widget from './Widget.html';
|
||||
|
||||
export default {
|
||||
html: '<div><p>i am a widget</p></div>',
|
||||
test ( assert, component ) {
|
||||
const widget = component.refs.widget;
|
||||
assert.ok( widget instanceof Widget );
|
||||
assert.ok( widget.isWidget );
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in new issue