Skip to content

Commit

Permalink
renamed: connectToLocalInstance
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-8 committed Aug 28, 2024
1 parent ff15d26 commit 9d415fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions e2e/02_courier.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
authenticateWithCredentials,
connectToTestInstance,
connectToLocalInstance,
describeif,
disablePasswordAutofill,
symfonyConsole,
Expand All @@ -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 () => {
Expand Down
2 changes: 1 addition & 1 deletion e2e/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 9d415fb

Please sign in to comment.