fix: Show error when referencing node that exist but has not been executed (#6496)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Ricardo Espinoza
2023-06-22 19:45:54 -04:00
committed by GitHub
parent 0e071724ee
commit 3db2707b8e
3 changed files with 27 additions and 2 deletions

View File

@@ -188,7 +188,11 @@ describe('Data mapping', () => {
ndv.getters
.inlineExpressionEditorInput()
.should('have.text', `{{ $('${SCHEDULE_TRIGGER_NODE_NAME}').item.json.input[0].count }}`);
ndv.getters.parameterExpressionPreview('value').should('not.exist');
ndv.getters
.parameterExpressionPreview('value')
.invoke('text')
.invoke('replace', /\u00a0/g, ' ')
.should('equal', '[ERROR: no data, execute "Schedule Trigger" node first]');
ndv.actions.switchInputMode('Table');
ndv.actions.mapDataFromHeader(1, 'value');