Add ConnectControllerDialog tests (#11443)

* Automatically fix up arc controller URL

* wip

* Force tests to pass

* Refactor

* comment
This commit is contained in:
Charles Gagnon
2020-07-21 17:15:13 -07:00
committed by GitHub
parent 0c3c714be1
commit 0f2b463536
5 changed files with 190 additions and 4 deletions

View File

@@ -17,6 +17,10 @@ export abstract class InitializingComponent {
return this._initialized;
}
public get isInitialized(): Promise<void> {
return this.onInitializedPromise.promise;
}
protected set initialized(value: boolean) {
if (!this._initialized && value) {
this._initialized = true;