https://linen.dev logo
#help
Title
# help
s

Shehryar Ahmed

09/19/2023, 4:52 PM
Hello i am new to wiremock and have a question. i am running wiremock with testcontainers and have a
StubRequestFilter
CustomFilter and i want to run my wiremock container with this extension. how should i run this? i tried following https://github.com/wiremock/wiremock/tree/master/test-extension by putting the classpath of my filter in resources/extensions and running
Copy code
.withCommand(
    "--extensions CustomFilter --global-response-templating --verbose --port " + WIREMOCK_PORT)
.withFileSystemBind("./src/test/resources/extensions", "/var/wiremock/extensions", BindMode.READ_WRITE)
, but had no luck