feat(editor): Rollout improved log view (#15202)

This commit is contained in:
Suguru Inoue
2025-05-08 11:12:13 +02:00
committed by GitHub
parent c51a884617
commit 8229b0bcc2
7 changed files with 25 additions and 26 deletions

View File

@@ -1,4 +1,5 @@
import { stringify } from 'flatted';
import { pick } from 'lodash';
import type {
IDataObject,
IRunData,
@@ -114,7 +115,7 @@ export function runMockWorkflowExecution({
cy.push('nodeExecuteBefore', {
executionId,
nodeName,
data: nodeRunData,
data: pick(nodeRunData, ['startTime', 'executionIndex', 'source', 'hints']),
});
cy.push('nodeExecuteAfter', {
executionId,