Skip to content

Commit

Permalink
Merge pull request #44 from stefanforsberg/master
Browse files Browse the repository at this point in the history
Added telemetry for gototest and updated changelog
  • Loading branch information
stefanforsberg authored Mar 25, 2018
2 parents d69eb0f + b077e96 commit 2b56eca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.2.2 ()
* [#43](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/43): Go to test code from tree

## 0.2.1 (2018-03-20)
* [#42](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/42): Show test results in tree for xunit
* [#41](https://github.com/formulahendry/vscode-dotnet-test-explorer/pull/41): Show spinner while discovering tests
Expand Down
3 changes: 3 additions & 0 deletions src/gotoTest.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import * as vscode from "vscode";
import { AppInsightsClient } from "./appInsightsClient";
import { TestNode } from "./testNode";

export class GotoTest {

public go(test: TestNode): void {

AppInsightsClient.sendEvent("gotoTest");

const testname = this.getTestName(test.name);

const symbolInformation = vscode.commands.executeCommand<vscode.SymbolInformation[]>(
Expand Down

0 comments on commit 2b56eca

Please sign in to comment.