summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-05-28 16:54:39 -0500
committerGravatar GitHub <noreply@github.com> 2021-05-28 16:54:39 -0500
commite08abacfeea2beee28f374f618c09b9b7ea783cc (patch)
tree65e4e493ff34d74a1cdd5fbc5e1483bf4af2282f /packages
parent14cfd204de13900daa9bf23de1dda0b76879dadb (diff)
downloadastro-e08abacfeea2beee28f374f618c09b9b7ea783cc.tar.gz
astro-e08abacfeea2beee28f374f618c09b9b7ea783cc.tar.zst
astro-e08abacfeea2beee28f374f618c09b9b7ea783cc.zip
fix: failing test? (#276)
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/test/fixtures/astro-children/astro.config.mjs8
1 files 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',
+ ],
};