mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor: Use NodeConnectionType consistently across the code base (no-changelog) (#10595)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { INodeProperties, INodeTypeDescription } from 'n8n-workflow';
|
||||
import { NodeConnectionType, type INodeProperties, type INodeTypeDescription } from 'n8n-workflow';
|
||||
import { useActionsGenerator } from '../composables/useActionsGeneration';
|
||||
|
||||
describe('useActionsGenerator', () => {
|
||||
@@ -14,8 +14,8 @@ describe('useActionsGenerator', () => {
|
||||
defaults: {
|
||||
name: 'Test',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
inputs: [NodeConnectionType.Main],
|
||||
outputs: [NodeConnectionType.Main],
|
||||
properties: [],
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user