update tests

pull/1173/head
Rich Harris 7 years ago
parent c62bc6c9b8
commit af5a73cc11

@ -176,7 +176,7 @@ var proto = {
/* generated by Svelte vX.Y.Z */
var Nested = window.Nested;
function create_main_fragment(state, component) {
function create_main_fragment(component, state) {
var nested = new Nested({
root: component.root,
@ -214,7 +214,7 @@ function SvelteComponent(options) {
this._aftercreate = [];
}
this._fragment = create_main_fragment(this._state, this);
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();

@ -3,7 +3,7 @@ import { _differsImmutable, assign, callAll, init, noop, proto } from "svelte/sh
var Nested = window.Nested;
function create_main_fragment(state, component) {
function create_main_fragment(component, state) {
var nested = new Nested({
root: component.root,
@ -41,7 +41,7 @@ function SvelteComponent(options) {
this._aftercreate = [];
}
this._fragment = create_main_fragment(this._state, this);
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();

@ -176,7 +176,7 @@ var proto = {
/* generated by Svelte vX.Y.Z */
var Nested = window.Nested;
function create_main_fragment(state, component) {
function create_main_fragment(component, state) {
var nested = new Nested({
root: component.root,
@ -214,7 +214,7 @@ function SvelteComponent(options) {
this._aftercreate = [];
}
this._fragment = create_main_fragment(this._state, this);
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();

@ -3,7 +3,7 @@ import { _differsImmutable, assign, callAll, init, noop, proto } from "svelte/sh
var Nested = window.Nested;
function create_main_fragment(state, component) {
function create_main_fragment(component, state) {
var nested = new Nested({
root: component.root,
@ -41,7 +41,7 @@ function SvelteComponent(options) {
this._aftercreate = [];
}
this._fragment = create_main_fragment(this._state, this);
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();

Loading…
Cancel
Save