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

    Function createFakeNotifications

    • Creates a fake notification capability.

      Returns FakeNotifications

      const notifications = createFakeNotifications();
      notifications._respondWith(1); // "click" the second action
      const choice = await notifications.show('info', 'Changed', {}, [
      { title: 'Reload' },
      { title: 'Ignore' },
      ]);
      expect(choice).toBe(1);