mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(Spreadsheet File Node): Fix include empty cells not working with v2 (#7505)
Github issue / Community forum post (link here to close automatically): Ticket#763644
This commit is contained in:
@@ -166,6 +166,18 @@ describe('Execute Spreadsheet File Node', () => {
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
description: 'execute includeempty.json',
|
||||
input: {
|
||||
workflowData: loadWorkflow('workflow.empty.json', 'includeempty.csv'),
|
||||
},
|
||||
output: {
|
||||
nodeData: {
|
||||
'Include Empty': [[{ json: { A: '1', B: '', C: '3' } }]],
|
||||
'Ignore Empty': [[{ json: { A: '1', C: '3' } }]],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
const nodeTypes = Helpers.setup(tests);
|
||||
|
||||
Reference in New Issue
Block a user