fix(GraphQL Node): Fix request format JSON error (#8646)

This commit is contained in:
Marcus
2024-02-15 17:49:18 +01:00
committed by GitHub
parent c4e259bcfc
commit bd4b50cf08
4 changed files with 108 additions and 3 deletions

View File

@@ -2125,6 +2125,15 @@ export interface WorkflowTestData {
[key: string]: any[][];
};
};
nock: {
baseUrl: string;
mocks: Array<{
method: string;
path: string;
statusCode: number;
responseBody: any;
}>;
};
trigger?: {
mode: WorkflowExecuteMode;
input: INodeExecutionData;