Skip to content

Commit 4b388a7

Browse files
committed
linting changes
1 parent 94a6321 commit 4b388a7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

run/test/specs/linked_device_change_username.spec.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,20 @@ async function changeUsernameLinkedAndroid(platform: SupportedPlatformsType) {
8484
let currentWait = 0;
8585
const waitPerLoop = 500;
8686
const maxWait = 50000;
87-
87+
8888
do {
8989
await sleepFor(waitPerLoop);
9090
// Close the screen and navigate back to the User Settings
9191
await device2.closeScreen();
9292
await device2.clickOnElementAll(new UserSettings(device2));
9393
currentWait += waitPerLoop;
94-
const linkedUsernameEl = await device2.waitForTextElementToBePresent(new UsernameSettings(device2));
94+
const linkedUsernameEl = await device2.waitForTextElementToBePresent(
95+
new UsernameSettings(device2)
96+
);
9597
currentLinkedUsername = await device2.getTextFromElement(linkedUsernameEl);
96-
97-
} while(currentLinkedUsername === userA.userName && currentWait < maxWait) {
98-
console.log('Username not changed yet')
98+
} while (currentLinkedUsername === userA.userName && currentWait < maxWait);
99+
{
100+
console.log('Username not changed yet');
99101
}
100102
await closeApp(device1, device2);
101103
}

0 commit comments

Comments
 (0)