We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the following spec the name of the .all promise name is duplicated in the path:
.all
it 'should generate good path', (done) -> treeComposition = (c, d) -> sub = c.continue 'subtree_c' sub.deliver d sub.then 'subthen0', (c, d) -> d .then 'subthen1', (c, d) -> d t = Root() t.deliver 10 .then 'then0', (c, d) -> d .all 'allin', [ treeComposition.bind @ treeComposition.bind @ ] .then 'then1', (c, d) -> d .finally (c, d) -> exp = { path: [ 'then0', 'allin', 'subtree_c', 'subthen0', 'subthen1', 'then1'] children: [] } chai.expect(c.toSong()).to.eql exp done()
The text was updated successfully, but these errors were encountered:
Added spec for issue #22
55c1700
Add spec for issues: #22 #25
7100862
Fixed in 7fd19a0
Sorry, something went wrong.
4cf31d0
No branches or pull requests
In the following spec the name of the
.all
promise name is duplicated in the path:The text was updated successfully, but these errors were encountered: