mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
21 lines
567 B
JavaScript
21 lines
567 B
JavaScript
import { loadFixture } from './test-utils.js';
|
|
import { expect } from 'chai';
|
|
|
|
describe('maxDuration', () => {
|
|
/** @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 });
|
|
});
|
|
});
|