Skip to content

Commit 2d91307

Browse files
authored
chore: fix ci (#205)
1 parent 0c65b5a commit 2d91307

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/samples/block-filenames/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
if (foo) bar;
88
</script>
99

10-
<div on:click={() => { if (foo) bar; }}>blah</div>
10+
<div on:click={() => { if (foo) bar; }} on:keyup={() => { if (foo) bar; }}>blah</div>

test/samples/script-reference/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
}, 1000);
66
</script>
77

8-
<div on:click={() => foo = true}>foo</div>
8+
<div on:click={() => foo = true} on:keyup={() => foo = true}>foo</div>

test/samples/typescript-block-filenames/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
if (foo) bar;
88
</script>
99

10-
<div on:click={() => { if (foo) bar; }}>blah</div>
10+
<div on:click={() => { if (foo) bar; }} on:keyup={() => { if (foo) bar; }}>blah</div>

test/samples/typescript-imports/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
a;
88
</script>
99

10-
<div on:click={() => new Thing2()}></div>
10+
<div on:click={() => new Thing2()} on:keyup={() => new Thing2()}></div>
1111
<Component />

test/samples/typescript-inline-type-import/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
a;
77
</script>
88

9-
<div on:click={() => new Thing2()}></div>
9+
<div on:click={() => new Thing2()} on:keyup={() => new Thing2()}></div>
1010
<Component />

test/samples/unused-write-only-store/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
1010
$imported = 'some value';
1111
</script>
12-
<div on:click={() => $imported = 'clicked' }/>
12+
<div on:click={() => $imported = 'clicked' } on:keyup={() => $imported = 'clicked' } />

0 commit comments

Comments
 (0)