mirror of https://github.com/sveltejs/svelte
failing tests for #2356
parent
3f97558533
commit
ce70467707
@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import Two from './Two.svelte';
|
||||
|
||||
export let list;
|
||||
|
||||
function handle_click() {
|
||||
list = [...list, {}];
|
||||
}
|
||||
</script>
|
||||
|
||||
{#each list as item}
|
||||
<Two bind:value={item.value}/>
|
||||
{/each}
|
||||
|
||||
<button on:click={handle_click}>
|
||||
click me
|
||||
</button>
|
@ -0,0 +1,3 @@
|
||||
<script>
|
||||
export let value = 'x';
|
||||
</script>
|
@ -0,0 +1,23 @@
|
||||
export default {
|
||||
html: `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":"x"}</p>
|
||||
<p></p>
|
||||
`,
|
||||
|
||||
async test({ assert, target, window }) {
|
||||
const button = target.querySelectorAll('button')[1];
|
||||
|
||||
await button.dispatchEvent(new window.Event('click'));
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":"x"}</p>
|
||||
<p>{"value":"x"}</p>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,14 @@
|
||||
<script>
|
||||
import One from "./One.svelte";
|
||||
|
||||
const obj = {
|
||||
a: [{}],
|
||||
b: []
|
||||
};
|
||||
</script>
|
||||
|
||||
<One bind:list={obj.a}/>
|
||||
<One bind:list={obj.b}/>
|
||||
|
||||
<p>{obj.a.map(JSON.stringify)}</p>
|
||||
<p>{obj.b.map(JSON.stringify)}</p>
|
@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import Two from './Two.svelte';
|
||||
|
||||
export let list;
|
||||
|
||||
function handle_click() {
|
||||
list = [...list, {}];
|
||||
}
|
||||
</script>
|
||||
|
||||
{#each list as item}
|
||||
<Two bind:value={item.value}/>
|
||||
{/each}
|
||||
|
||||
<button on:click={handle_click}>
|
||||
click me
|
||||
</button>
|
@ -0,0 +1,3 @@
|
||||
<script>
|
||||
export let value = { x: true };
|
||||
</script>
|
@ -0,0 +1,23 @@
|
||||
export default {
|
||||
html: `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":{"x":true}}</p>
|
||||
<p></p>
|
||||
`,
|
||||
|
||||
async test({ assert, target, window }) {
|
||||
const button = target.querySelectorAll('button')[1];
|
||||
|
||||
await button.dispatchEvent(new window.Event('click'));
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":{"x":true}}</p>
|
||||
<p>{"value":{"x":true}}</p>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,14 @@
|
||||
<script>
|
||||
import One from "./One.svelte";
|
||||
|
||||
const obj = {
|
||||
a: [{}],
|
||||
b: []
|
||||
};
|
||||
</script>
|
||||
|
||||
<One bind:list={obj.a}/>
|
||||
<One bind:list={obj.b}/>
|
||||
|
||||
<p>{obj.a.map(JSON.stringify)}</p>
|
||||
<p>{obj.b.map(JSON.stringify)}</p>
|
@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import Two from './Two.svelte';
|
||||
|
||||
export let list;
|
||||
|
||||
function handle_click() {
|
||||
list = [...list, {}];
|
||||
}
|
||||
</script>
|
||||
|
||||
{#each list as item}
|
||||
<Two bind:value={item.value}/>
|
||||
{/each}
|
||||
|
||||
<button on:click={handle_click}>
|
||||
click me
|
||||
</button>
|
@ -0,0 +1,9 @@
|
||||
<script>
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
export let value;
|
||||
|
||||
onMount(() => {
|
||||
value = { x: true };
|
||||
});
|
||||
</script>
|
@ -0,0 +1,25 @@
|
||||
export default {
|
||||
skip: 1,
|
||||
|
||||
html: `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":{"x":true}}</p>
|
||||
<p></p>
|
||||
`,
|
||||
|
||||
async test({ assert, target, window }) {
|
||||
const button = target.querySelectorAll('button')[1];
|
||||
|
||||
await button.dispatchEvent(new window.Event('click'));
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<button>click me</button>
|
||||
<button>click me</button>
|
||||
|
||||
<p>{"value":{"x":true}}</p>
|
||||
<p>{"value":{"x":true}}</p>
|
||||
`);
|
||||
}
|
||||
};
|
@ -0,0 +1,14 @@
|
||||
<script>
|
||||
import One from "./One.svelte";
|
||||
|
||||
const obj = {
|
||||
a: [{}],
|
||||
b: []
|
||||
};
|
||||
</script>
|
||||
|
||||
<One bind:list={obj.a}/>
|
||||
<One bind:list={obj.b}/>
|
||||
|
||||
<p>{obj.a.map(JSON.stringify)}</p>
|
||||
<p>{obj.b.map(JSON.stringify)}</p>
|
Loading…
Reference in new issue