Skip to content

Commit 028c325

Browse files
committed
chore(tests): cleanup fixtures
1 parent 0a587d0 commit 028c325

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

src/__tests__/fixtures/Comp.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
}
99
</script>
1010

11-
<style>
12-
h1 {
13-
color: purple;
14-
}
15-
</style>
11+
<style></style>
1612

1713
<h1>Hello {name}!</h1>
1814

src/__tests__/fixtures/Stopwatch.svelte

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@
3232

3333
<style></style>
3434

35-
<div>
36-
<span>{lapse}ms</span>
37-
<button on:click={handleRunClick}>
38-
{running ? 'Stop' : 'Start'}
39-
</button>
40-
<button on:click={handleClearClick}>Clear</button>
41-
</div>
35+
<span>{lapse}ms</span>
4236

37+
<button on:click={handleRunClick}>
38+
{running ? 'Stop' : 'Start'}
39+
</button>
40+
41+
<button on:click={handleClearClick}>Clear</button>

0 commit comments

Comments
 (0)