import { SDK_NAME, SDK_VERSION } from '../constants/Constants'; describe('Constants', () => { describe('SDK_NAME', () => { it('should have the correct SDK name', () => { expect(SDK_NAME).toBe('rn-widget-sdk'); }); }); describe('SDK_VERSION', () => { it('should import version from package.json', () => { expect(SDK_VERSION).toBeDefined(); expect(typeof SDK_VERSION).toBe('string'); expect(SDK_VERSION).toMatch(/^\d+\.\d+\.\d+$/); // Verifica formato semver }); }); });