diff options
author | 2021-03-30 10:51:31 -0400 | |
---|---|---|
committer | 2021-03-30 10:51:31 -0400 | |
commit | 3b27eaac4384e82e7f08122f0797a9671470781a (patch) | |
tree | 8c4c1b653d7f947e1589a35046ef4f64b92d7c97 /test/react-component.test.js | |
parent | dbd764bdeb2b514a426690cedb390edb9c2a75de (diff) | |
download | astro-3b27eaac4384e82e7f08122f0797a9671470781a.tar.gz astro-3b27eaac4384e82e7f08122f0797a9671470781a.tar.zst astro-3b27eaac4384e82e7f08122f0797a9671470781a.zip |
Add support for doctype (#37)
* Add support for doctype
* Automatically prepend doctype
Diffstat (limited to 'test/react-component.test.js')
-rw-r--r-- | test/react-component.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/react-component.test.js b/test/react-component.test.js index 85892a623..48608f902 100644 --- a/test/react-component.test.js +++ b/test/react-component.test.js @@ -17,7 +17,7 @@ React.before(async () => { }; try { - runtime = await createRuntime(astroConfig, logging); + runtime = await createRuntime(astroConfig, {logging}); } catch (err) { console.error(err); setupError = err; |