summaryrefslogtreecommitdiff
path: root/packages/integrations/deno/test/dynamic-import.test.ts
blob: 1562a57711bc5991d261675da34743b015dbfb8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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');
		});
	},
});