name: 'Test 1'
ns: test
title: 'Two Inputs one Async'
type: flow
nodes:
  -
    id: node1
    ns: test
    name: oneasync
nodeDefinitions:
  test:
    oneasync:
      ns: test
      name: oneasync
      async: true
      ports:
        input:
          asy1:
            type: string
            async: true
          syn2:
            type: string
        output:
          out1:
            type: string
          out2:
            type: string
      fn: "on.input.asy1 = function() { output({ out1: $.get('asy1'), out2: $.get('syn2') }); } "
