Skip to content

Commit

Permalink
Format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
WesCossick committed Feb 23, 2021
1 parent 922e76e commit 9fbe153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/run-program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function removeFormatting(text) {
}

// Test runner
export default function runProgram(command: string): Promise<{ stdout: string; stderr: string; }> {
export default function runProgram(command: string): Promise<{ stdout: string; stderr: string }> {
// Return a promise
return new Promise((resolve, reject) => {
// Launch the program
Expand All @@ -33,4 +33,4 @@ export default function runProgram(command: string): Promise<{ stdout: string; s
});
});
});
};
}

0 comments on commit 9fbe153

Please sign in to comment.