feat: Use status directly from executions

This commit is contained in:
Faruk AYDIN
2025-03-19 17:09:36 +01:00
parent fcc1c5067e
commit 9a0aef9d9b
7 changed files with 12 additions and 23 deletions

View File

@@ -4,6 +4,7 @@ import { createFlow } from './flow';
export const createExecution = async (params = {}) => {
params.flowId = params?.flowId || (await createFlow()).id;
params.testRun = params?.testRun || false;
params.status = params?.status || 'success';
const execution = await Execution.query().insertAndFetch(params);

View File

@@ -2,6 +2,7 @@ const getExecutionMock = async (execution, flow, steps) => {
const data = {
id: execution.id,
testRun: execution.testRun,
status: execution.status,
createdAt: execution.createdAt.getTime(),
updatedAt: execution.updatedAt.getTime(),
flow: {