blob: e927527a142edef9c199df495bbd574d4eb66c64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import { expect } from 'chai';
import { cli } from './test-utils.js';
import { fileURLToPath } from 'url';
const root = new URL('./fixtures/builders/', import.meta.url).toString();
describe('Builders', () => {
before(async () => {
await cli('build', '--root', fileURLToPath(root));
});
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);
});
});
|