@tsed/formio
Version:
Formio package for Ts.ED framework
21 lines (14 loc) • 582 B
text/typescript
import {PlatformTest} from "@tsed/platform-http/testing";
import {AlterHost} from "./AlterHost.js";
describe("AlterHost", () => {
beforeEach(() => PlatformTest.create());
afterEach(PlatformTest.reset);
it("should transform host", async () => {
const ctx = PlatformTest.createRequestContext();
ctx.request.raw.headers["host"] = "host";
ctx.getRequest().protocol = "https";
const alterHost = await PlatformTest.invoke<AlterHost>(AlterHost);
const url = alterHost.transform("/projects", ctx);
expect(url).toEqual("https://host/projects");
});
});