Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
test: remove uneeded return
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecrs committed Mar 15, 2021
1 parent 224625b commit 5c31985
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/commands/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ const bin = getBinPathSync();
export const runCommand = (
commandLine: string,
options?: execa.SyncOptions
): execa.ExecaSyncReturnValue => {
return execa.commandSync(`${bin} ${commandLine}`, {
): execa.ExecaSyncReturnValue =>
execa.commandSync(`${bin} ${commandLine}`, {
...options,
});
};

0 comments on commit 5c31985

Please sign in to comment.