From 9904eca5d25108ef714d279e4314e0797266536e Mon Sep 17 00:00:00 2001 From: Flo Becker Date: Thu, 30 Dec 2021 08:18:10 +0000 Subject: [PATCH] fix: Interaction response status can only be a number not a Matcher (Typescript type) --- src/dsl/interaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsl/interaction.ts b/src/dsl/interaction.ts index 3dc353b17..1780b8f52 100644 --- a/src/dsl/interaction.ts +++ b/src/dsl/interaction.ts @@ -22,7 +22,7 @@ export interface RequestOptions { } export interface ResponseOptions { - status: number | MatcherResult + status: number headers?: { [name: string]: string | MatcherResult } body?: any }