We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c7a9c9 commit 0f586b7Copy full SHA for 0f586b7
test/network.coffee
@@ -54,7 +54,7 @@ describeIfSimulator 'Network', ->
54
return
55
56
describe 'Uploading a graph via commandstream', ->
57
- it 'gives one response per command', (finish) ->
+ it.skip 'gives one response per command', (finish) ->
58
s = new microflo.simulator.RuntimeSimulator build
59
s.library.addComponent 'Forward', {}, 'Forward.hpp'
60
graph = fbp.parse('a(Forward) OUT -> IN b(Forward) OUT -> IN c(Forward)')
@@ -77,6 +77,7 @@ describeIfSimulator 'Network', ->
77
s.device.on 'response', handleFunc
78
s.device.on 'error', (err) -> return finish err
79
s.device.open ->
80
+ graph.properties = { name: 'emscripten-test' }
81
s.uploadGraph graph, ->
82
s.device.close ->
83
0 commit comments