私が持っているとしましょう
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
})