update tests

pull/7738/head
Rich-Harris 9 years ago
parent 8d9f69c152
commit 339d2987fc

@ -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