fix: Correct executions table name for execution factory
This commit is contained in:
@@ -6,7 +6,7 @@ export const createExecution = async (params: Partial<Execution> = {}) => {
|
|||||||
params.testRun = params?.testRun || false;
|
params.testRun = params?.testRun || false;
|
||||||
|
|
||||||
const [execution] = await global.knex
|
const [execution] = await global.knex
|
||||||
.table('execution')
|
.table('executions')
|
||||||
.insert(params)
|
.insert(params)
|
||||||
.returning('*');
|
.returning('*');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user