Skip to content

Commit 582ef54

Browse files
committed
failing test for sveltejs#1598
1 parent cf30ce8 commit 582ef54

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

Diff for: test/runtime/samples/component-data-null/Widget.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>foo: '{foo}'</p>

Diff for: test/runtime/samples/component-data-null/_config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default {
2+
html: `<div><p>foo: ''</p></div>`
3+
};

Diff for: test/runtime/samples/component-data-null/main.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<div>
2+
<Widget foo={null} />
3+
</div>
4+
5+
<script>
6+
import Widget from './Widget.html';
7+
8+
export default {
9+
components: { Widget }
10+
};
11+
</script>

0 commit comments

Comments
 (0)