diff options
| author | 2022-06-21 08:32:05 -0400 | |
|---|---|---|
| committer | 2022-06-21 08:32:05 -0400 | |
| commit | 3600cb68e85cdb5c29aecef38363031073561f43 (patch) | |
| tree | 58a2577293e494623b6e4820feb8beb67bcaa8a4 /packages/integrations/netlify/test/edge-functions/dynamic-import.test.js | |
| parent | c49b6b6477565a34c49d88d80c9aa1aa2c9b44e5 (diff) | |
| download | astro-3600cb68e85cdb5c29aecef38363031073561f43.tar.gz astro-3600cb68e85cdb5c29aecef38363031073561f43.tar.zst astro-3600cb68e85cdb5c29aecef38363031073561f43.zip | |
Support re-exporting astro components containing client components (#3625)
* Support re-exporting astro components containing client components
* Include metadata for markdown too
* Fix ssr, probably
* Inject post-build
* Remove tagName custom element test
* Allows using the constructor for lit elements
* Fix hoisted script scanning
* Pass through plugin context
* Get edge functions working in the edge tests
* Fix types for the edge function integration
* Upgrade the compiler
* Upgrade compiler version
* Better release notes for lit
* Update .changeset/unlucky-hairs-camp.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
* Properly test that the draft was not rendered
* Prevent from rendering draft posts
* Add a changeset about the build perf improvement.
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/netlify/test/edge-functions/dynamic-import.test.js')
| -rw-r--r-- | packages/integrations/netlify/test/edge-functions/dynamic-import.test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/edge-functions/dynamic-import.test.js b/packages/integrations/netlify/test/edge-functions/dynamic-import.test.js index 9688a8753..b23f9b4c4 100644 --- a/packages/integrations/netlify/test/edge-functions/dynamic-import.test.js +++ b/packages/integrations/netlify/test/edge-functions/dynamic-import.test.js @@ -19,6 +19,8 @@ Deno.test({ const doc = new DOMParser().parseFromString(html, `text/html`); const div = doc.querySelector('#thing'); assert(div, 'div exists'); + } catch(err) { + console.error(err); } finally { await close(); await stop(); |
