We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a587d0 commit 028c325Copy full SHA for 028c325
src/__tests__/fixtures/Comp.html
@@ -8,11 +8,7 @@
8
}
9
</script>
10
11
-<style>
12
- h1 {
13
- color: purple;
14
- }
15
-</style>
+<style></style>
16
17
<h1>Hello {name}!</h1>
18
src/__tests__/fixtures/Stopwatch.svelte
@@ -32,11 +32,10 @@
32
33
<style></style>
34
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>
+<span>{lapse}ms</span>
42
+<button on:click={handleRunClick}>
+ {running ? 'Stop' : 'Start'}
+</button>
+
+<button on:click={handleClearClick}>Clear</button>
0 commit comments