mirror of https://github.com/sveltejs/svelte
commit
14826b76e5
@ -0,0 +1,24 @@
|
|||||||
|
export default {
|
||||||
|
data: {
|
||||||
|
foo: true
|
||||||
|
},
|
||||||
|
|
||||||
|
html: `true`,
|
||||||
|
|
||||||
|
skip: /^v4/.test( process.version ), // node 4 apparently does some dumb stuff
|
||||||
|
'skip-ssr': true, // there's some kind of weird bug with this test... it compiles with the wrong require.extensions hook for some bizarre reason
|
||||||
|
|
||||||
|
test ( assert, component, target, window ) {
|
||||||
|
const event = new window.Event( 'click' );
|
||||||
|
|
||||||
|
window.dispatchEvent( event );
|
||||||
|
assert.equal( component.get( 'foo' ), false );
|
||||||
|
assert.htmlEqual( target.innerHTML, `false` );
|
||||||
|
|
||||||
|
window.dispatchEvent( event );
|
||||||
|
assert.equal( component.get( 'foo' ), true );
|
||||||
|
assert.htmlEqual( target.innerHTML, `true` );
|
||||||
|
|
||||||
|
component.destroy();
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,3 @@
|
|||||||
|
<:Window on:click='set({ foo: !foo })'/>
|
||||||
|
|
||||||
|
{{foo}}
|
Loading…
Reference in new issue