mirror of https://github.com/sveltejs/svelte
8 lines
186 B
8 lines
186 B
8 years ago
|
export default {
|
||
|
html: '<canvas></canvas>',
|
||
8 years ago
|
test ( assert, component, target ) {
|
||
8 years ago
|
const canvas = target.querySelector( 'canvas' );
|
||
|
assert.equal( canvas, component.refs.foo );
|
||
|
}
|
||
|
};
|