mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
05adaaa2d2
* create vercel edge middleware remove getVercelOutput * handle node built-in modules * edge function to node fetch * adjust tests * add test * add changeset * function paths as constants * ensure node built-in modules are namespaced with `node:` * x-astro-path as constant * appease linter * add comments for ASTRO_PATH_HEADER and ASTRO_LOCALS_HEADER --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
21 lines
566 B
JavaScript
21 lines
566 B
JavaScript
import { loadFixture } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
|
|
describe('streaming', () => {
|
|
/** @type {import('./test-utils.js').Fixture} */
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/streaming/',
|
|
});
|
|
await fixture.build();
|
|
});
|
|
|
|
it('makes it to vercel function configuration', async () => {
|
|
const vcConfig = JSON.parse(
|
|
await fixture.readFile('../.vercel/output/functions/_render.func/.vc-config.json')
|
|
);
|
|
expect(vcConfig).to.deep.include({ supportsResponseStreaming: true });
|
|
});
|
|
});
|