UNPKG

@reown/appkit-siwx

Version:

The chain agnostic tool to enable authentication for AppKit applications.

7 lines 434 B
import { expect, it } from 'vitest'; import { CloudAuthSIWX, ReownAuthentication } from '../../src/configs/ReownAuthenticationSIWX'; it('should have same instance for CloudAuthSIWX and ReownAuthentication guaranteeing backwards compatibility', () => { expect(ReownAuthentication).toBe(CloudAuthSIWX); expect(new ReownAuthentication()).toBeInstanceOf(CloudAuthSIWX); }); //# sourceMappingURL=ReownAuthenticationSIWX.test.js.map