Skip to content

Commit

Permalink
Print the command being run when debugging tests (#1417)
Browse files Browse the repository at this point in the history
Just like a regular test run, print the command being run when starting
a debugging session whiel running tests.
  • Loading branch information
plemarquand authored Mar 3, 2025
1 parent 7b60f35 commit d7ceea7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/TestExplorer/TestRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,8 @@ export class TestRunner {
);

const outputHandler = this.testOutputHandler(config.testType, runState);
outputHandler(`> ${config.program} ${config.args.join(" ")}\n\n\r`);

LoggingDebugAdapterTracker.setDebugSessionCallback(
session,
this.workspaceContext.outputChannel,
Expand Down

0 comments on commit d7ceea7

Please sign in to comment.