import { shortAddress } from '../address'; describe('shortAddress', () => { it('abnormal input', () => { expect(shortAddress('')).toBe(''); expect(shortAddress(undefined)).toBeUndefined(); }); it('normal input', () => { expect(shortAddress('0x2Ba1633338dDD2Ab37fbc95ea615BA98f0445380')).toBe( '0x2Ba1...5380', ); }); });