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

    Function createFakeCommands

    • Creates a fake command capability.

      Returns FakeCommands

      const commands = createFakeCommands();
      const registration = commands.register('sample.refresh', () => 3);
      await expect(commands.execute('sample.refresh')).resolves.toBe(3);
      registration.dispose();
      expect(commands.registeredIds).toEqual([]);