astro/packages/integrations/netlify/test/edge-functions/test-utils.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
898 B
TypeScript
Raw Normal View History

// @ts-ignore
import { fromFileUrl, readableStreamFromReader } from './deps.ts';
const dir = new URL('./', import.meta.url);
export async function runBuild(fixturePath: string) {
// @ts-ignore
let proc = Deno.run({
cmd: ['node', '../../../../../../astro/astro.js', 'build', '--silent'],
cwd: fromFileUrl(new URL(fixturePath, dir)),
});
await proc.status();
return async () => await proc.close();
}
export async function runApp(entryPath: string) {
2022-06-07 15:43:33 +00:00
const entryUrl = new URL(entryPath, dir);
let proc = Deno.run({
cmd: ['deno', 'run', '--allow-env', '--allow-net', fromFileUrl(entryUrl)],
//cwd: fromFileUrl(entryUrl),
2022-06-07 15:43:33 +00:00
stderr: 'piped',
});
const stderr = readableStreamFromReader(proc.stderr);
const dec = new TextDecoder();
2022-06-07 15:43:33 +00:00
for await (let bytes of stderr) {
let msg = dec.decode(bytes);
2022-06-07 15:43:33 +00:00
if (msg.includes(`Server running`)) {
break;
}
}
return () => proc.close();
}