Merge pull request #213190 from microsoft/connor4312/testing-followup-actions

testing: exploratory UI for followup actions
This commit is contained in:
Connor Peet
2024-05-21 16:40:54 -07:00
committed by GitHub
12 changed files with 315 additions and 34 deletions

View File

@@ -453,6 +453,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension, 'testObserver');
return extHostTesting.runTests(provider);
},
registerTestFollowupProvider(provider) {
checkProposedApiEnabled(extension, 'testObserver');
return extHostTesting.registerTestFollowupProvider(provider);
},
get onDidChangeTestResults() {
checkProposedApiEnabled(extension, 'testObserver');
return _asExtensionEvent(extHostTesting.onResultsChanged);