Skip to main content
The Deno 2 Release Candidate is here
Learn more
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; }