const { createNode } = require('../../src/index'); test('Reflection node returns input unchanged', () => { const node = createNode('Reflection'); const input = { a: 1 }; const output = node.execute(input); expect(output).toBe(input); });