test: Implement getExecutions graphQL query tests

This commit is contained in:
Faruk AYDIN
2023-10-25 16:19:14 +02:00
parent b0d73aabc2
commit 759468630e
5 changed files with 302 additions and 35 deletions

View File

@@ -51,8 +51,8 @@ export interface IExecution {
testRun: boolean;
status: 'success' | 'failure';
executionSteps: IExecutionStep[];
updatedAt: string;
createdAt: string;
updatedAt: string | Date;
createdAt: string | Date;
}
export interface IStep {
@@ -83,8 +83,8 @@ export interface IFlow {
active: boolean;
status: 'paused' | 'published' | 'draft';
steps: IStep[];
createdAt: string;
updatedAt: string;
createdAt: string | Date;
updatedAt: string | Date;
remoteWebhookId: string;
lastInternalId: () => Promise<string>;
}