From 468946f4ec59bd548adfcca45b12ffbe05cd6f4b Mon Sep 17 00:00:00 2001 From: Anastasia Poupeney Date: Wed, 13 Jun 2018 17:00:12 +0200 Subject: [PATCH] remove not needed changes --- src/commands/testCrash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/testCrash.js b/src/commands/testCrash.js index 5675a1ee..0725988a 100644 --- a/src/commands/testCrash.js +++ b/src/commands/testCrash.js @@ -8,10 +8,10 @@ import { createCommand, Command } from 'helpers/ipc' type Input = void type Result = void -const cmd: Command = createCommand('testCrash', () => { - return Observable.create(() => { +const cmd: Command = createCommand('testCrash', () => + Observable.create(() => { process.exit(1) - }) -}) + }), +) export default cmd