update tests

pull/525/head
Rich-Harris 8 years ago
parent 8ccad1f107
commit 6ed2a6c785

@ -55,7 +55,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -38,7 +38,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -131,7 +131,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -51,7 +51,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -80,7 +80,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -61,7 +61,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

@ -211,7 +211,7 @@ function SvelteComponent ( options ) {
this._handlers = Object.create( null );
this._root = options._root;
this._root = options._root || this;
this._yield = options._yield;
this._torndown = false;

Loading…
Cancel
Save