Skip to content

Commit

Permalink
fix: show all args
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 20, 2018
1 parent db4614f commit b578460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const testCommand: TestCommand = (
opts: TestCommandOptions,
fn?: TestCommandCallback<any>
) => {
const description = opts.description || args[0]
const description = opts.description || args.join(' ')
let test = it
if (opts.stdout) test = test.stdout
if (opts.stderr) test = test.stderr
Expand Down

0 comments on commit b578460

Please sign in to comment.