testing: move types to classes instead of interfaces

Fixes #117373
Fixes #117381
Fixes #117384
This commit is contained in:
Connor Peet
2021-03-04 11:50:01 -08:00
parent 35aed33726
commit d6b3bc68f1
22 changed files with 275 additions and 253 deletions

View File

@@ -1236,7 +1236,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
NotebookCellOutput: extHostTypes.NotebookCellOutput,
NotebookCellOutputItem: extHostTypes.NotebookCellOutputItem,
LinkedEditingRanges: extHostTypes.LinkedEditingRanges,
TestRunState: extHostTypes.TestRunState,
TestItem: extHostTypes.TestItem,
TestState: extHostTypes.TestState,
TestResult: extHostTypes.TestResult,
TestMessage: extHostTypes.TestMessage,
TestMessageSeverity: extHostTypes.TestMessageSeverity,
WorkspaceTrustState: extHostTypes.WorkspaceTrustState
};