Skip to content

Commit

Permalink
Remove debugging output
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <[email protected]>
  • Loading branch information
tsmaeder committed Jul 25, 2024
1 parent b5890f5 commit 5dd778f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/test/src/browser/view/test-run-view-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ export class TestRunViewContribution extends AbstractViewContribution<TestRunTre
override registerCommands(commands: CommandRegistry): void {
super.registerCommands(commands);
commands.registerCommand(TestViewCommands.CANCEL_RUN, {
isEnabled: t => {
console.log('is enabled');
return TestRun.is(t) && t.isRunning
},
isEnabled: t => TestRun.is(t) && t.isRunning,
isVisible: t => TestRun.is(t),
execute: t => {
if (TestRun.is(t)) {
Expand Down

0 comments on commit 5dd778f

Please sign in to comment.