fix: remove extraneous incorrect context keys (#183959)

These were actually getting added in getTestItemContextOverlay, and the test ID was using the extended ID which extensions do not know about.

Fixes #183612
This commit is contained in:
Connor Peet 2023-05-31 08:23:50 -07:00 committed by GitHub
parent d4771143d3
commit be6446ddb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1394,12 +1394,6 @@ const getActionableElementActions = (
], [
TestingContextKeys.supportsContinuousRun.key,
supportsCr,
], [
TestingContextKeys.controllerId.key,
test.controllerId,
], [
TestingContextKeys.testItemExtId.key,
test.item.extId,
]);
}