diff --git a/e2e/02_courier.spec.js b/e2e/02_courier.spec.js index e78c9ad7f..03d177cae 100644 --- a/e2e/02_courier.spec.js +++ b/e2e/02_courier.spec.js @@ -1,6 +1,6 @@ import { authenticateWithCredentials, - connectToTestInstance, + connectToLocalInstance, describeif, disablePasswordAutofill, symfonyConsole, @@ -14,7 +14,7 @@ describeif(device.getPlatform() === 'android')('Courier', () => { disablePasswordAutofill(); await device.reloadReactNative(); - await connectToTestInstance(); + await connectToLocalInstance(); }); it(`should be able to login and see tasks`, async () => { diff --git a/e2e/utils.js b/e2e/utils.js index 45bf59c3b..310a06af6 100644 --- a/e2e/utils.js +++ b/e2e/utils.js @@ -60,7 +60,7 @@ const getLocalIpAddress = () => { return null; }; -export const connectToTestInstance = async () => { +export const connectToLocalInstance = async () => { await expect(element(by.id('chooseCityBtn'))).toBeVisible(); await element(by.id('chooseCityBtn')).tap();