mirror of https://github.com/sveltejs/svelte
8 lines
195 B
8 lines
195 B
8 years ago
|
export default {
|
||
|
html: `<span> </span>`,
|
||
|
|
||
|
test ( assert, component, target ) {
|
||
|
const text = target.querySelector( 'span' ).textContent;
|
||
|
assert.equal( text.charCodeAt( 0 ), 160 );
|
||
|
}
|
||
|
};
|