Skip to content

Updated default port to match the currently public replay #48

Updated default port to match the currently public replay

Updated default port to match the currently public replay #48

GitHub Actions / Tests annotations (🧪 jest-coverage-report-action) failed Sep 1, 2025 in 0s

Test suite run failed

Failed tests: 0/25. Failed suites: 2/3.

Details

Created failed tests' annotations. To disable them, see documentation.

  ● Test suite failed to run

    tests/gun-registry.test.ts:507:29 - error TS2339: Property 'sendSignalingMessage' does not exist on type 'GunRegistry'.

    507       await expect(registry.sendSignalingMessage('target-peer', { test: 'message' }))
                                    ~~~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:515:22 - error TS2339: Property 'sendSignalingMessage' does not exist on type 'GunRegistry'.

    515       await registry.sendSignalingMessage(targetPeer, message);
                             ~~~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:539:16 - error TS2339: Property 'onSignalingMessage' does not exist on type 'GunRegistry'.

    539       registry.onSignalingMessage('test-store-id', callback);
                       ~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:549:16 - error TS2339: Property 'onSignalingMessage' does not exist on type 'GunRegistry'.

    549       registry.onSignalingMessage(storeId, callback);
                       ~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:562:16 - error TS2339: Property 'onSignalingMessage' does not exist on type 'GunRegistry'.

    562       registry.onSignalingMessage(storeId, callback);
                       ~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:576:16 - error TS2339: Property 'onSignalingMessage' does not exist on type 'GunRegistry'.

    576       registry.onSignalingMessage(storeId, callback);
                       ~~~~~~~~~~~~~~~~~~
    tests/gun-registry.test.ts:594:29 - error TS2551: Property 'unregister' does not exist on type 'GunRegistry'. Did you mean 'register'?

    594       await expect(registry.unregister('test-store-id')).rejects.toThrow('Gun.js registry not available');
                                    ~~~~~~~~~~

      src/registry/gun-registry.ts:91:16
        91   public async register(capabilities: HostCapabilities): Promise<void> {
                          ~~~~~~~~
        'register' is declared here.
    tests/gun-registry.test.ts:601:22 - error TS2551: Property 'unregister' does not exist on type 'GunRegistry'. Did you mean 'register'?

    601       await registry.unregister(storeId);
                             ~~~~~~~~~~

      src/registry/gun-registry.ts:91:16
        91   public async register(capabilities: HostCapabilities): Promise<void> {
                          ~~~~~~~~
        'register' is declared here.


  ● Test suite failed to run

    src/host.ts:415:32 - error TS2551: Property 'unregister' does not exist on type 'GunRegistry'. Did you mean 'register'?

    415         await this.gunRegistry.unregister(this.storeId);
                                       ~~~~~~~~~~

      src/registry/gun-registry.ts:91:16
        91   public async register(capabilities: HostCapabilities): Promise<void> {
                          ~~~~~~~~
        'register' is declared here.