1

我正在使用oclif创建一个 cli 应用程序。用户执行命令,cli 询问他是否要继续(是/否回答)。

我试图测试使用cli-ux prompt的命令。我想模拟用户交互以输入“是”字。

我怎样才能做到这一点?我试过这个:

describe('mycommand', () => {
  test
    .stdout()
    .command(['mycommand', 'action'])
    .stdin('y')
    .it('it shoud do someting', ctx => {});

});
4

1 回答 1

0

Oclif 提示测试相关,我可以找到解决方案。

请小心询问用户的方式,因为您可以使用cli.promptcli.confirm。就我而言,我使用cli.confirm的可能测试可能是:

describe('it should clean items in done list', () => {
  test
  .stub(cli, 'confirm', () => async () => 'Y')
  .stdout()
  .command(['clean', 'done'])
  .it('it shoud clean items in done list', ctx => {
    // test
  });
});

于 2019-07-30T13:12:38.240 回答