describe('deep links', () => { it('opens the order screen from a URL', async () => { await device.launchApp({ newInstance: true, url: 'myshop://orders/123', }); await expect(element(by.id('order-detail-screen'))).toBeVisible(); await expect(element(by.id('order-id'))).toHaveText('123'); }); });