feat: make more node group features work
📊 Benchmark the Runtime / release (pull_request) Successful in 4m32s
🚀 Lint & Test & Deploy / release (pull_request) Failing after 1m5s

This commit is contained in:
2026-05-03 16:34:52 +02:00
parent 6ef5dc28ed
commit 01f58377c2
13 changed files with 589 additions and 401 deletions
+6 -2
View File
@@ -23,7 +23,11 @@ export function createMockNodeRegistry(nodes: NodeDefinition[]): NodeRegistry {
export const mockFloatOutputNode: NodeDefinition = {
id: 'test/node/output',
inputs: {},
inputs: {
'input': {
type: 'float'
}
},
outputs: ['float'],
meta: { title: 'Float Output' },
execute: () => new Int32Array()
@@ -32,7 +36,7 @@ export const mockFloatOutputNode: NodeDefinition = {
export const mockFloatInputNode: NodeDefinition = {
id: 'test/node/input',
inputs: { value: { type: 'float' } },
outputs: [],
outputs: ['float'],
meta: { title: 'Float Input' },
execute: () => new Int32Array()
};