From cedbb28586a6d2a9134d3ba8306128a0f7ebca01 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 25 Nov 2018 21:51:08 -0500 Subject: [PATCH] fix debugging output --- test/hydration/index.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/test/hydration/index.js b/test/hydration/index.js index 42e954b695..303e6ab8d6 100644 --- a/test/hydration/index.js +++ b/test/hydration/index.js @@ -85,11 +85,17 @@ describe.only('hydration', () => { assert.equal(target.innerHTML, ''); } } catch (err) { - showOutput(cwd, { shared: 'svelte/shared.js' }); // eslint-disable-line no-console + showOutput(cwd, { + shared: 'svelte/internal.js', + hydratable: true + }); throw err; } - if (config.show) showOutput(cwd, { shared: 'svelte/shared.js' }); + if (config.show) showOutput(cwd, { + shared: 'svelte/internal.js', + hydratable: true + }); }); }