summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/builders.test.js
blob: 281c4f3dae73afc0f545b62ed206705690cdc912 (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);
  });
});