it('should send "isready" command to proc stdout', async () => {
    let p = await engineInit(cpMock)
    p.isready()

    expect(cpMock.stdin.write).toHaveBeenCalledWith(`isready${EOL}`)