diff --git a/test/custom-elements/samples/no-shadow-dom-with-slots/AsImported.svelte b/test/custom-elements/samples/no-shadow-dom-with-slots/AsImported.svelte index baa5da90f1..032e392569 100644 --- a/test/custom-elements/samples/no-shadow-dom-with-slots/AsImported.svelte +++ b/test/custom-elements/samples/no-shadow-dom-with-slots/AsImported.svelte @@ -1,3 +1,3 @@ - +

\ No newline at end of file diff --git a/test/custom-elements/samples/no-shadow-dom-with-slots/main.svelte b/test/custom-elements/samples/no-shadow-dom-with-slots/main.svelte index 2e46f8e57c..63c835d7bd 100644 --- a/test/custom-elements/samples/no-shadow-dom-with-slots/main.svelte +++ b/test/custom-elements/samples/no-shadow-dom-with-slots/main.svelte @@ -2,8 +2,8 @@ Hello -world \ No newline at end of file +world \ No newline at end of file diff --git a/test/custom-elements/samples/no-shadow-dom-with-slots/test.js b/test/custom-elements/samples/no-shadow-dom-with-slots/test.js index 2c6d5d91d8..0c15b2debc 100644 --- a/test/custom-elements/samples/no-shadow-dom-with-slots/test.js +++ b/test/custom-elements/samples/no-shadow-dom-with-slots/test.js @@ -6,7 +6,7 @@ export default function (target) { target }); - assert.equal(target.innerHTML, '

Hello

world

'); + assert.equal(target.innerHTML, '

Hello

world

'); const el = target.querySelector('custom-element'); assert.equal(el.innerText, "Hello world!");