testing: base test explorer

This commit is contained in:
Connor Peet
2020-12-11 15:15:25 -08:00
parent f30948328d
commit a9bf16e001
17 changed files with 1020 additions and 27 deletions

View File

@@ -23,6 +23,10 @@ export class MainThreadTesting extends Disposable implements MainThreadTestingSh
this.proxy = extHostContext.getProxy(ExtHostContext.ExtHostTesting);
this._register(this.testService.onShouldSubscribe(args => this.proxy.$subscribeToTests(args.resource, args.uri)));
this._register(this.testService.onShouldUnsubscribe(args => this.proxy.$unsubscribeFromTests(args.resource, args.uri)));
for (const { resource, uri } of this.testService.subscriptions) {
this.proxy.$subscribeToTests(resource, uri);
}
}
/**