update tests

pull/4501/head
Conduitry 6 years ago
parent 16021129d8
commit 0efe244e40

@ -14,7 +14,7 @@ import {
space,
subscribe,
text,
validate_slot,
validate_slots,
validate_store
} from "svelte/internal";
@ -116,7 +116,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$set = $$props => {
if ("prop" in $$props) $$subscribe_prop($$invalidate(0, prop = $$props.prop));

@ -13,7 +13,7 @@ import {
set_data_dev,
space,
text,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -77,7 +77,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$set = $$props => {
if ("name" in $$props) $$invalidate(0, name = $$props.name);

@ -15,7 +15,7 @@ import {
space,
text,
validate_each_argument,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -181,7 +181,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$set = $$props => {
if ("things" in $$props) $$invalidate(0, things = $$props.things);

@ -15,7 +15,7 @@ import {
space,
text,
validate_each_argument,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -173,7 +173,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$set = $$props => {
if ("things" in $$props) $$invalidate(0, things = $$props.things);

@ -5,7 +5,7 @@ import {
init,
noop,
safe_not_equal,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -58,7 +58,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$capture_state = () => ({ obj, kobzol });
$$self.$inject_state = $$props => {

@ -12,7 +12,7 @@ import {
space,
text,
validate_each_argument,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -143,7 +143,7 @@ function instance($$self, $$props) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
return [];
}

@ -13,7 +13,7 @@ import {
set_data_dev,
space,
text,
validate_slot
validate_slots
} from "svelte/internal";
const file = undefined;
@ -74,7 +74,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
$$self.$set = $$props => {
if ("foo" in $$props) $$invalidate(0, foo = $$props.foo);

@ -12,7 +12,7 @@ import {
loop_guard,
noop,
safe_not_equal,
validate_slot
validate_slots
} from "svelte/internal";
const { console: console_1 } = globals;
@ -112,7 +112,7 @@ function instance($$self, $$props, $$invalidate) {
});
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
validate_slots("Component", $$slots, []);
function div_binding($$value) {
binding_callbacks[$$value ? "unshift" : "push"](() => {

@ -3,7 +3,7 @@ export default {
dev: true
},
warnings: [
'Received unexpected slot named "default"',
'Received unexpected slot named "slot1"'
'<Nested> received an unexpected slot "default".',
'<Nested> received an unexpected slot "slot1".'
]
};

Loading…
Cancel
Save