5bbe385b21
* Improve test infrastructure for integrations/deno * Add changeset * Use declared type * Remove changeset * Upgrade deno version in -workflow
22 lines
766 B
TypeScript
22 lines
766 B
TypeScript
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.35-alpha/deno-dom-wasm.ts";
|
|
import { assert, assertEquals } from "https://deno.land/std@0.158.0/testing/asserts.ts";
|
|
import { StartServerCallback, runBuildAndStartAppFromSubprocess } from "./helpers.ts";
|
|
|
|
async function startApp(cb: StartServerCallback) {
|
|
await runBuildAndStartAppFromSubprocess('./fixtures/dynimport/', cb);
|
|
}
|
|
|
|
Deno.test({
|
|
name: 'Dynamic import',
|
|
async fn() {
|
|
await startApp(async (baseUrl: URL) => {
|
|
const resp = await fetch(baseUrl);
|
|
assertEquals(resp.status, 200);
|
|
const html = await resp.text();
|
|
assert(html);
|
|
const doc = new DOMParser().parseFromString(html, `text/html`);
|
|
const div = doc!.querySelector('#thing');
|
|
assert(div, 'div exists');
|
|
});
|
|
},
|
|
});
|