@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface FakeQuickInput

    A fake quick-input capability that records every quick pick and input box it creates and lets tests drive them through _-prefixed controls.

    interface FakeQuickInput {
        backButton: QuickInputButtonLike;
        inputBoxes: readonly FakeInputBox[];
        quickPicks: readonly FakeQuickPick<QuickPickItemLike>[];
        createInputBox(): InputBoxLike;
        createQuickPick<T extends QuickPickItemLike>(): QuickPickLike<T>;
    }

    Hierarchy (View Summary)

    Index

    The platform's Back button sentinel. Steps compare against it by identity.

    inputBoxes: readonly FakeInputBox[]

    Every input box created, in order, including disposed ones.

    quickPicks: readonly FakeQuickPick<QuickPickItemLike>[]

    Every quick pick created, in order, including disposed ones.