We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72baaaf commit 5105fa5Copy full SHA for 5105fa5
1 file changed
test/tests/treebuilder.js
@@ -40,7 +40,7 @@ describe("TreeBuilder", function(){
40
//count how many entries we should have
41
return readDir(reposPath)
42
//treebuilder should have all entries in the clean working dir (minus .git folder)
43
- .then(dirEntries => assert.equal(dirEntries.length-1, treeBuilder.entrycount()));
+ .then(function(dirEntries){ return assert.equal(dirEntries.length-1, treeBuilder.entrycount()) });
44
});
45
46
})
0 commit comments