WireMock module for Testcontainers for NodeJS
npm install @wiremock/wiremock-testcontainers-node --save-dev
Add a stub mapping json file (eg. mapping.json
)
import { WireMockContainer } from "wiremock-testcontainers-node";
const container = await new WireMockContainer()
.withMapping("./mapping.json")
.withExposedPorts(8080)
.start();
const { output, exitCode } = await container.exec([
"curl",
"http://localhost:8080/hello",
]);
console.log(output);
await container.stop();