Browse Source

remove not needed changes

master
Anastasia Poupeney 7 years ago
parent
commit
468946f4ec
  1. 8
      src/commands/testCrash.js

8
src/commands/testCrash.js

@ -8,10 +8,10 @@ import { createCommand, Command } from 'helpers/ipc'
type Input = void type Input = void
type Result = void type Result = void
const cmd: Command<Input, Result> = createCommand('testCrash', () => { const cmd: Command<Input, Result> = createCommand('testCrash', () =>
return Observable.create(() => { Observable.create(() => {
process.exit(1) process.exit(1)
}) }),
}) )
export default cmd export default cmd

Loading…
Cancel
Save