Skip to content

Commit cdfde8d

Browse files
authored
fix: Track framework name instead of int value (#1609)
Signed-off-by: Sheng Chen <[email protected]>
1 parent 5b156d2 commit cdfde8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/controller/testController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,8 @@ function trackTestFrameworkVersion(testKind: TestKind, classpaths: string[], mod
567567
}
568568
}
569569
sendInfo('', {
570-
testFramework: testKind,
571-
version,
570+
testFramework: TestKind[testKind],
571+
frameworkVersion: version
572572
});
573573
}
574574

0 commit comments

Comments
 (0)