<% title = 'imposter information' description = 'Information about a specific mountebank imposter' %> <%- include('_header') -%>

<%= imposter.protocol %> Imposter on port <%= imposter.port %>

Requests

<% imposter.requests.forEach(request => { -%>
<%= JSON.stringify(request, null, 2) %>
<% }); -%>

Stubs

<% imposter.stubs.forEach(stub => { -%>
<%= JSON.stringify(stub, null, 2) %>
<% }); -%> <%- include('_footer') -%>