updated tests to reflect anchor change

pull/7738/head
Andrew Worcester 8 years ago
parent 47e56e3da6
commit 186fa2701f

@ -237,7 +237,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -73,7 +73,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -184,7 +184,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -44,7 +44,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -219,7 +219,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -59,7 +59,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -331,7 +331,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -158,7 +158,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -228,7 +228,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -68,7 +68,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -270,7 +270,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -106,7 +106,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -246,7 +246,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -82,7 +82,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -204,7 +204,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -46,7 +46,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -226,7 +226,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
if ( !options._root ) {

@ -74,7 +74,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
if ( !options._root ) {

@ -191,7 +191,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
if ( !options._root ) {

@ -51,7 +51,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
if ( !options._root ) {

@ -193,7 +193,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -53,7 +53,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -430,7 +430,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

@ -266,7 +266,7 @@ function SvelteComponent ( options ) {
if ( options.target ) {
this._fragment.create();
this._fragment.mount( options.target, null );
this._fragment.mount( options.target, options.anchor || null );
}
}

Loading…
Cancel
Save