import { CLAIM, CLAIMABLE, DELETE_CLAIMABLE, REGISTER_USER, } from '@constants/api'; test('Base Url must be same', () => { expect(REGISTER_USER).toBe('/user/register'); expect(CLAIMABLE).toBe('/issuer/claimable'); expect(CLAIM).toBe('/issuer/claim'); expect(DELETE_CLAIMABLE).toBe('/issuer/delete-claimable'); });