Merge pull request #1379 from automatisch/factories/execution-step
test: Implement execution step factory
This commit is contained in:
20
packages/backend/test/factories/execution-step.ts
Normal file
20
packages/backend/test/factories/execution-step.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import ExecutionStep from '../../src/models/execution-step';
|
||||
import { createExecution } from './execution';
|
||||
import { createStep } from './step';
|
||||
|
||||
export const createExecutionStep = async (
|
||||
params: Partial<ExecutionStep> = {}
|
||||
) => {
|
||||
params.executionId = params?.executionId || (await createExecution()).id;
|
||||
params.stepId = params?.stepId || (await createStep()).id;
|
||||
params.status = params?.status || 'success';
|
||||
params.dataIn = params?.dataIn || { dataIn: 'dataIn' };
|
||||
params.dataOut = params?.dataOut || { dataOut: 'dataOut' };
|
||||
|
||||
const [executionStep] = await global.knex
|
||||
.table('executionSteps')
|
||||
.insert(params)
|
||||
.returning('*');
|
||||
|
||||
return executionStep;
|
||||
};
|
@@ -6,7 +6,7 @@ export const createExecution = async (params: Partial<Execution> = {}) => {
|
||||
params.testRun = params?.testRun || false;
|
||||
|
||||
const [execution] = await global.knex
|
||||
.table('execution')
|
||||
.table('executions')
|
||||
.insert(params)
|
||||
.returning('*');
|
||||
|
||||
|
@@ -5,7 +5,7 @@ export const createStep = async (params: Partial<Step> = {}) => {
|
||||
params.flowId = params?.flowId || (await createFlow()).id;
|
||||
params.type = params?.type || 'action';
|
||||
|
||||
const [lastStep] = await global.knex
|
||||
const lastStep = await global.knex
|
||||
.table('steps')
|
||||
.where('flowId', params.flowId)
|
||||
.andWhere('deletedAt', '!=', null)
|
||||
|
Reference in New Issue
Block a user