From e08abacfeea2beee28f374f618c09b9b7ea783cc Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Fri, 28 May 2021 16:54:39 -0500 Subject: [PATCH] fix: failing test? (#276) --- .../astro/test/fixtures/astro-children/astro.config.mjs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/astro/test/fixtures/astro-children/astro.config.mjs b/packages/astro/test/fixtures/astro-children/astro.config.mjs index e2a209f83..a87cc51c9 100644 --- a/packages/astro/test/fixtures/astro-children/astro.config.mjs +++ b/packages/astro/test/fixtures/astro-children/astro.config.mjs @@ -1,5 +1,7 @@ export default { - extensions: { - '.jsx': 'preact' - }, + renderers: [ + '@astro-renderer/preact', + '@astro-renderer/vue', + '@astro-renderer/svelte', + ], };