update js tests

pull/2008/head
Richard Harris 7 years ago
parent 53b17b4cd3
commit 0dd46b0873

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
nested.$$.fragment.i();
nested.$$.fragment.i(local);
current = true;
},
o() {
if (nested) nested.$$.fragment.o();
o(local) {
nested.$$.fragment.o(local);
current = false;
},

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
nested.$$.fragment.i();
nested.$$.fragment.i(local);
current = true;
},
o() {
if (nested) nested.$$.fragment.o();
o(local) {
nested.$$.fragment.o(local);
current = false;
},

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
nested.$$.fragment.i();
nested.$$.fragment.i(local);
current = true;
},
o() {
if (nested) nested.$$.fragment.o();
o(local) {
nested.$$.fragment.o(local);
current = false;
},

@ -17,15 +17,15 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
nested.$$.fragment.i();
nested.$$.fragment.i(local);
current = true;
},
o() {
if (nested) nested.$$.fragment.o();
o(local) {
nested.$$.fragment.o(local);
current = false;
},

@ -18,15 +18,15 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
lazyload.$$.fragment.i();
lazyload.$$.fragment.i(local);
current = true;
},
o() {
if (lazyload) lazyload.$$.fragment.o();
o(local) {
lazyload.$$.fragment.o(local);
current = false;
},

@ -24,18 +24,18 @@ function create_fragment(ctx) {
p: noop,
i() {
i(local) {
if (current) return;
imported.$$.fragment.i();
imported.$$.fragment.i(local);
nonimported.$$.fragment.i();
nonimported.$$.fragment.i(local);
current = true;
},
o() {
if (imported) imported.$$.fragment.o();
if (nonimported) nonimported.$$.fragment.o();
o(local) {
imported.$$.fragment.o(local);
nonimported.$$.fragment.o(local);
current = false;
},

Loading…
Cancel
Save