Skip to content

Commit

Permalink
fix: Track framework name instead of int value (#1609)
Browse files Browse the repository at this point in the history
Signed-off-by: Sheng Chen <[email protected]>
  • Loading branch information
jdneo authored Sep 22, 2023
1 parent 5b156d2 commit cdfde8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/testController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,8 @@ function trackTestFrameworkVersion(testKind: TestKind, classpaths: string[], mod
}
}
sendInfo('', {
testFramework: testKind,
version,
testFramework: TestKind[testKind],
frameworkVersion: version
});
}

Expand Down

0 comments on commit cdfde8d

Please sign in to comment.