astro/packages/integrations/netlify/test/edge-functions/dynamic-import.test.ts
Emanuele Stoppa 4c93bd8154
feat(@astrojs/netlify): edge middleware support (#7632)
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
2023-07-17 15:53:10 +01:00

29 lines
769 B
TypeScript

import { loadFixture } from './test-utils.ts';
import { assertEquals, assert, DOMParser } from './deps.ts';
Deno.test({
name: 'Dynamic imports',
permissions: 'inherit',
async fn() {
const { runApp, runBuild } = await loadFixture('./fixtures/dynimport/');
await runBuild();
const stop = await runApp('./fixtures/dynimport/prod.js');
try {
const response = await fetch('http://127.0.0.1:8085/');
assertEquals(response.status, 200);
const html = await response.text();
assert(html, 'got some html');
const doc = new DOMParser().parseFromString(html, `text/html`);
if (doc) {
const div = doc.querySelector('#thing');
assert(div, 'div exists');
}
} catch (err) {
console.error(err);
} finally {
await stop();
}
},
});