2

私が持っているとしましょう

export class MyCommand {
  async run() {
    this.someCommand();
    ...
  }

  someCommand() {

  }
}

runコマンドのテストを書きたいのですが、 someCommand. を使用してどのようにそれを行いますか

test
  .stdout()
  .command()
  .it('should run the run command', () => {
     // also test that someCommand was called
  })
4

0 に答える 0