1import { setGeneratedIosScheme } from '../withGeneratedIosScheme'; 2 3it(`adds a scheme generated from slug`, () => { 4 const config = { slug: 'cello' }; 5 const infoPlist = {}; 6 expect(setGeneratedIosScheme(config, infoPlist)).toMatchInlineSnapshot(` 7 Object { 8 "CFBundleURLTypes": Array [ 9 Object { 10 "CFBundleURLSchemes": Array [ 11 "exp+cello", 12 ], 13 }, 14 ], 15 } 16 `); 17}); 18