add test from gh-2086

pull/3209/head
Rich Harris 5 years ago
parent f2d25828d5
commit 85e25a957d

@ -0,0 +1,5 @@
<svelte:head>
<meta name="description" content="A"/>
</svelte:head>
A

@ -0,0 +1,5 @@
<svelte:head>
<meta name="description" content="B"/>
</svelte:head>
B

@ -0,0 +1,15 @@
export default {
html: `
A
`,
test({ assert, component, window }) {
component.x = false;
const meta = window.document.querySelectorAll('meta');
assert.equal(meta.length, 1);
assert.equal(meta[0].name, 'description');
assert.equal(meta[0].content, 'B');
}
};

@ -0,0 +1,8 @@
<script>
import A from './A.svelte';
import B from './B.svelte';
export let x = true;
</script>
<svelte:component this="{x ? A : B}"/>
Loading…
Cancel
Save