Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
exit 1 on test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Loring committed May 12, 2016
1 parent c7e1572 commit a67692d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/e2e/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,12 @@ function runTest() {
})
.catch(function(e) {
console.error(e);
process.exit(1);
});
});
}).catch(function(e) {
console.error(e);
process.exit(1);
});
}

Expand Down

0 comments on commit a67692d

Please sign in to comment.