feat: Convert factories files to JS
This commit is contained in:
17
packages/backend/test/factories/execution-step.js
Normal file
17
packages/backend/test/factories/execution-step.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { createExecution } from './execution';
|
||||
import { createStep } from './step';
|
||||
|
||||
export const createExecutionStep = async (params = {}) => {
|
||||
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;
|
||||
};
|
Reference in New Issue
Block a user