mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(core): Add support for $("NodeName").isExecuted (#8683)
This commit is contained in:
@@ -294,8 +294,9 @@ describe('WorkflowDataProxy', () => {
|
||||
expect(() => proxy.$('doNotExist')).toThrowError(ExpressionError);
|
||||
});
|
||||
|
||||
test('$("NodeName")', () => {
|
||||
expect(() => proxy.$('Set')).toThrowError(ExpressionError);
|
||||
test('test $("NodeName").isExecuted', () => {
|
||||
expect(proxy.$('Function').isExecuted).toEqual(true);
|
||||
expect(proxy.$('Set').isExecuted).toEqual(false);
|
||||
});
|
||||
|
||||
test('test $input.all()', () => {
|
||||
|
||||
Reference in New Issue
Block a user