Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/pact/src/pact-js/consumer.ts>AsynchronousMessage

Pact 🔗 Contract Testing for Deno 🦕, Powered by Rust 🦀
Latest
type alias AsynchronousMessage
Re-export
import { type AsynchronousMessage } from "https://deno.land/x/pact@0.1.0/src/pact-js/consumer.ts";
definition: RequestPluginInteraction & { given: (state: string) => void; givenWithParam: (
state: string,
name: string,
value: string,
) => void; expectsToReceive: (description: string) => void; withMetadata: (name: string, value: string) => void; withContents: (body: string, contentType: string) => void; withBinaryContents: (body: Buffer, contentType: string) => void; reifyMessage: () => string; }