Browse Source

fix ci error

master
Anastasia Poupeney 7 years ago
parent
commit
0ae905fa6a
  1. 6
      src/commands/testCrash.js

6
src/commands/testCrash.js

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

Loading…
Cancel
Save