import { stubPrompter } from '@salesforce/sf-plugins-core';
let prompterStubs: ReturnType<typeof stubPrompter>;
// inside your beforeEach, $$ is a SinonSandbox
prompterStubs = stubPrompter($$.SANDBOX);
// inside some test
expect(prompterStubs.confirm.firstCall.args[0]).to.equal(
messages.getMessage('confirmDelete', ['scratch', testOrg.username])
);
Stub the SfCommand prompter.