mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(core): Always save evaluation executions (#16285)
This commit is contained in:
@@ -618,7 +618,16 @@ describe('TestRunnerService', () => {
|
||||
pinData: {
|
||||
[triggerNodeName]: [testCase],
|
||||
},
|
||||
workflowData: workflow,
|
||||
workflowData: {
|
||||
...workflow,
|
||||
settings: {
|
||||
...workflow.settings,
|
||||
saveManualExecutions: true,
|
||||
saveDataErrorExecution: 'all',
|
||||
saveDataSuccessExecution: 'all',
|
||||
saveExecutionProgress: false,
|
||||
},
|
||||
},
|
||||
userId: metadata.userId,
|
||||
partialExecutionVersion: 2,
|
||||
triggerToStartFrom: {
|
||||
@@ -742,7 +751,16 @@ describe('TestRunnerService', () => {
|
||||
pinData: {
|
||||
[triggerNodeName]: [testCase],
|
||||
},
|
||||
workflowData: workflow,
|
||||
workflowData: {
|
||||
...workflow,
|
||||
settings: {
|
||||
...workflow.settings,
|
||||
saveManualExecutions: true,
|
||||
saveDataErrorExecution: 'all',
|
||||
saveDataSuccessExecution: 'all',
|
||||
saveExecutionProgress: false,
|
||||
},
|
||||
},
|
||||
userId: metadata.userId,
|
||||
partialExecutionVersion: 2,
|
||||
triggerToStartFrom: {
|
||||
|
||||
@@ -189,7 +189,16 @@ export class TestRunnerService {
|
||||
const data: IWorkflowExecutionDataProcess = {
|
||||
executionMode: 'evaluation',
|
||||
pinData,
|
||||
workflowData: workflow,
|
||||
workflowData: {
|
||||
...workflow,
|
||||
settings: {
|
||||
...workflow.settings,
|
||||
saveManualExecutions: true,
|
||||
saveDataErrorExecution: 'all',
|
||||
saveDataSuccessExecution: 'all',
|
||||
saveExecutionProgress: false,
|
||||
},
|
||||
},
|
||||
userId: metadata.userId,
|
||||
partialExecutionVersion: 2,
|
||||
triggerToStartFrom: {
|
||||
|
||||
Reference in New Issue
Block a user