From 0ae905fa6a24943c37cb2ecdb4f9c0a34cbbffe8 Mon Sep 17 00:00:00 2001 From: Anastasia Poupeney Date: Wed, 13 Jun 2018 17:43:36 +0200 Subject: [PATCH] fix ci error --- src/commands/testCrash.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/commands/testCrash.js b/src/commands/testCrash.js index 5675a1ee..72695e53 100644 --- a/src/commands/testCrash.js +++ b/src/commands/testCrash.js @@ -8,10 +8,8 @@ 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