Skip to content

Commit

Permalink
fix: adjust hook template
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 3, 2022
1 parent 8453994 commit e672f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/test/command.nut.ts.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('<%- cmd %> NUTs', () => {
it('should display provided name', () => {
const name = 'World';
const command = `<%- cmd %> --name ${name}`;
const output = execCmd(command, { ensureExitCode: 0, cli: 'sf' }).shellOutput.stdout;
const output = execCmd(command, { ensureExitCode: 0 }).shellOutput.stdout;
expect(output).to.contain(name);
});
});

0 comments on commit e672f9b

Please sign in to comment.