@wiremock/wiremock-testcontainers-node
v0.0.1
Published
Run WireMock with JavaScript/TypeScript tests using Testcontainers for Node.js
Downloads
1,790
Keywords
Readme
wiremock-testcontainers-node
WireMock module for Testcontainers for NodeJS
Usage
npm install wiremock-testcontainers-node
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();