Remove unneeded return

This commit is contained in:
Kevin Sawicki 2016-11-29 14:19:20 -08:00
parent 77fa7ce977
commit 4ccc3d9fb3

View file

@ -81,7 +81,7 @@ describe('app module', function () {
var appProcess = null
afterEach(function () {
appProcess != null ? appProcess.kill() : void 0
if (appProcess != null) appProcess.kill()
})
it('emits a process exit event with the code', function (done) {