mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Persist node execution order, and forward it to the frontend (#14455)
This commit is contained in:
committed by
GitHub
parent
707ecb63ae
commit
9ba58ca80b
@@ -553,7 +553,9 @@ describe('useDataSchema', () => {
|
||||
data: {
|
||||
resultData: {
|
||||
runData: {
|
||||
[runDataKey ?? name]: [{ data, startTime: 0, executionTime: 0, source: [] }],
|
||||
[runDataKey ?? name]: [
|
||||
{ data, startTime: 0, executionTime: 0, executionIndex: 0, source: [] },
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -619,17 +621,20 @@ describe('useDataSchema', () => {
|
||||
{
|
||||
startTime: 0,
|
||||
executionTime: 0,
|
||||
executionIndex: 0,
|
||||
source: [],
|
||||
},
|
||||
{
|
||||
startTime: 0,
|
||||
executionTime: 0,
|
||||
executionIndex: 1,
|
||||
source: [],
|
||||
},
|
||||
{
|
||||
data: { [Main]: [null, mockExecutionDataMarker] },
|
||||
startTime: 0,
|
||||
executionTime: 0,
|
||||
executionIndex: 2,
|
||||
source: [],
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user