Skip to content

Commit

Permalink
Amendment for fix for issue 376
Browse files Browse the repository at this point in the history
  • Loading branch information
dkl-ppi committed Nov 1, 2013
1 parent e186e0e commit c72cfda
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/runners/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,8 @@ var testRun = {
},

runTests: function (rs, manifests) {
if (this.aborted || rs.loadPath.paths().length === 0) {
return this.done();
}
if (this.aborted) { return; }
if (rs.loadPath.paths().length === 0) { return this.done(); }
try {
writeManifest(cacheFile(this.config), manifests);
var runner = test.autoRun(this.options, {
Expand Down

0 comments on commit c72cfda

Please sign in to comment.