/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { Code } from './code';67export abstract class Viewlet {89constructor(protected code: Code) { }1011async waitForTitle(fn: (title: string) => boolean): Promise<void> {12await this.code.waitForTextContent('.monaco-workbench .part.sidebar > .title > .title-label > h2', undefined, fn);13}14}151617