Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 27, 2025
1 parent d82a80e commit 9b8d563
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/shortest/src/cli/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ const main = async () => {
log.trace("Initializing TestRunner");
const runner = new TestRunner(process.cwd(), config);
await runner.initialize();
const success = await runner.execute(testPattern ?? config.testPattern, lineNumber);
const success = await runner.execute(
testPattern ?? config.testPattern,
lineNumber,
);
process.exitCode = success ? 0 : 1;
} catch (error: any) {
log.trace("Handling error for TestRunner");
Expand Down

0 comments on commit 9b8d563

Please sign in to comment.