I've been trying to develop a PR for an issue I've found. When running npm test:only I get the following error:
at Function.o.cleanStackTrace (.../future/node_modules/ospec/ospec.js:53:71)
at report (.../future/node_modules/ospec/ospec.js:241:24)
at next (.../future/node_modules/ospec/ospec.js:133:14)
at done (.../future/node_modules/ospec/ospec.js:103:20)
at pop (.../future/node_modules/ospec/ospec.js:76:7)
at next (.../future/node_modules/ospec/ospec.js:133:14)
at done (.../future/node_modules/ospec/ospec.js:103:20)
at pop (.../future/node_modules/ospec/ospec.js:76:7)
at next (.../future/node_modules/ospec/ospec.js:133:14)
at done (.../future/node_modules/ospec/ospec.js:103:20)```
I've been trying to develop a PR for an issue I've found. When running
npm test:only
I get the following error:After hacking around with ospec.js I managed to get the tests to sort of work but most failed with time out and this test is clearly going to fail as it will create the output "rock! infix ops": https://github.com/tomp4l/future/blob/master/tests/TestFuture.re#L266-L272
You can see from the compiled JS it's prepending the strings:
I would like to submit a feature to make
map
andflatMap
stack safe but without working tests it's hard for me to contribute.