f974c95a27
* feat(netlify): expose builders ttl as a local * add changeset * docs(netlify): caching using on-demand builders * reword readme section * Update packages/integrations/netlify/package.json Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> * include builders-types.d.ts in the distribution * document caveat regarding query params * update changeset * mutation -> function * locals.netlify -> locals.runtime * update types and changeset * Apply suggestions from code review Co-authored-by: Elian ☕️ <hello@elian.codes> * Apply suggestions from code review Co-authored-by: Elian ☕️ <hello@elian.codes> --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Elian ☕️ <hello@elian.codes>
37 lines
1 KiB
JavaScript
37 lines
1 KiB
JavaScript
import { expect } from 'chai';
|
|
import { loadFixture, testIntegration } from './test-utils.js';
|
|
import netlifyAdapter from '../../dist/index.js';
|
|
|
|
describe('Builders', () => {
|
|
/** @type {import('../../../astro/test/test-utils').Fixture} */
|
|
let fixture;
|
|
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: new URL('./fixtures/builders/', import.meta.url).toString(),
|
|
output: 'server',
|
|
adapter: netlifyAdapter({
|
|
dist: new URL('./fixtures/builders/dist/', import.meta.url),
|
|
builders: true
|
|
}),
|
|
site: `http://example.com`,
|
|
integrations: [testIntegration()],
|
|
});
|
|
await fixture.build();
|
|
});
|
|
|
|
it('A route can set builders ttl', async () => {
|
|
const entryURL = new URL(
|
|
'./fixtures/builders/.netlify/functions-internal/entry.mjs',
|
|
import.meta.url
|
|
);
|
|
const { handler } = await import(entryURL);
|
|
const resp = await handler({
|
|
httpMethod: 'GET',
|
|
headers: {},
|
|
rawUrl: 'http://example.com/',
|
|
isBase64Encoded: false,
|
|
});
|
|
expect(resp.ttl).to.equal(45);
|
|
});
|
|
});
|