Remove unneeded return
This commit is contained in:
parent
77fa7ce977
commit
4ccc3d9fb3
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue