feat: Use status directly from executions
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user