From ec69ff7bbbe293aeebb27e61f92a7ca881de5fd9 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Fri, 15 Nov 2024 10:40:49 +0100 Subject: [PATCH] add missing Execution.skipRequest --- types/sandbox/test.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/sandbox/test.d.ts b/types/sandbox/test.d.ts index 512296d2..7aa8fde4 100644 --- a/types/sandbox/test.d.ts +++ b/types/sandbox/test.d.ts @@ -258,6 +258,11 @@ declare interface Execution { * @param request - name of the request to run next */ setNextRequest(request: string | null): void; + + /** + * TODO copy the documentation from postman + */ + skipRequest(): void } declare interface ExecutionLocation extends Array {