1import { sanitizedName } from '../Xcodeproj'; 2 3describe(sanitizedName, () => { 4 it(`formats basic name`, () => { 5 expect(sanitizedName('bacon')).toBe('bacon'); 6 }); 7 it(`formats android/xcode unsupported name`, () => { 8 expect(sanitizedName('あいう')).toBe('app'); 9 }); 10 it(`uses slugify for better name support`, () => { 11 expect(sanitizedName('\u2665')).toBe('love'); 12 }); 13}); 14