0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00

remove redundant test

This commit is contained in:
Rich Harris 2018-04-16 11:41:48 -04:00
parent dadf21c6b7
commit d2a5b366d8
5 changed files with 6 additions and 20 deletions

View File

@ -1,3 +1,8 @@
export default {
html: '<div><p>foo: bar</p>\n<p>baz: 42 (number)</p></div>'
html: `
<div>
<p>foo: bar</p>
<p>baz: 42 (number)</p>
</div>
`
};

View File

@ -1,2 +0,0 @@
<p>foo: {foo}</p>
<p>baz: {baz} ({typeof baz})</p>

View File

@ -1,4 +0,0 @@
<div>
<p>foo: bar</p>
<p>baz: 42 (string)</p>
</div>

View File

@ -1,2 +0,0 @@
<div><p>foo: bar</p>
<p>baz: 42 (number)</p></div>

View File

@ -1,11 +0,0 @@
<div>
<Widget foo='bar' baz='42'/>
</div>
<script>
import Widget from './Widget.html';
export default {
components: { Widget }
};
</script>