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 17:23:50 +02:00
committed by GitHub
parent d4771143d3
commit be6446ddb1
@@ -1394,12 +1394,6 @@ const getActionableElementActions = (
], [
TestingContextKeys.supportsContinuousRun.key,
supportsCr,
], [
TestingContextKeys.controllerId.key,
test.controllerId,
], [
TestingContextKeys.testItemExtId.key,
test.item.extId,
]);
}