Skip to content

Commit ec3da4a

Browse files
committed
failing test for #9499
1 parent 37f2493 commit ec3da4a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { test } from '../../test';
2+
3+
export default test({
4+
html: `<p>42</p>`,
5+
6+
async test({ assert, target, window, component }) {
7+
assert.equal(component.answer, undefined);
8+
}
9+
});
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<svelte:options runes />
2+
3+
<script context="module">
4+
export const answer = 42;
5+
</script>
6+
7+
<p>{answer}</p>

0 commit comments

Comments
 (0)