mirror of https://github.com/sveltejs/svelte
11 lines
182 B
11 lines
182 B
8 years ago
|
export default {
|
||
|
test ( assert, component, target ) {
|
||
|
component.set({ q: 42 });
|
||
|
component.set({ foo: true });
|
||
|
|
||
|
assert.htmlEqual( target.innerHTML, `
|
||
|
<p>42</p>
|
||
|
` );
|
||
|
}
|
||
|
};
|