0.4.0 • Published 7 years ago

cli-agent v0.4.0

Weekly downloads
8
License
ISC
Repository
github
Last release
7 years ago

cli-agent

Code Climate Issue Count Build Status

Setup

npm install cli-agent --save-dev

Using

// @see tests
const interaction = new CLIAgent(/* path to program */);
let year;
const result = await interaction.wait(/hello/i)
  .wait(/question/i)
  .send('2014\n')
  .wait(/year is (\d+)/, (matches) => {
    year = matches[1];
  })
  .start();
0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.1

7 years ago