Skip to content

Commit 21ecab7

Browse files
committed
chore: linting
1 parent 94a229a commit 21ecab7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

run/test/specs/voice_calls.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ async function voiceCallIos(platform: SupportedPlatformsType, testInfo: TestInfo
8484
await alice1.clickOnElementAll(new CallButton(alice1));
8585
await bob1.checkModalStrings(
8686
englishStrippedStr('callsMissedCallFrom').withArgs({ name: alice.userName }).toString(),
87-
englishStrippedStr('callsYouMissedCallPermissions').withArgs({ name: alice.userName }).toString()
87+
englishStrippedStr('callsYouMissedCallPermissions')
88+
.withArgs({ name: alice.userName })
89+
.toString()
8890
);
8991
await bob1.clickOnByAccessibilityID('Settings');
9092
await alice1.waitForTextElementToBePresent({

run/types/DeviceWrapper.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,6 @@ export class DeviceWrapper {
329329
{ strategy: 'id' as Strategy, pattern: /resource-id="([^"]+)"/g },
330330
];
331331

332-
333332
// If this list gets out of hand, consider lowering the threshold
334333
const blacklist = [
335334
{ from: 'Voice message', to: 'New voice message' },
@@ -388,7 +387,9 @@ export class DeviceWrapper {
388387

389388
// Don't heal blacklisted pairs
390389
if (isBlacklisted) {
391-
this.log(`Skipping healing: prevented "${selector}" from healing to "${match.originalSelector}"`);
390+
this.log(
391+
`Skipping healing: prevented "${selector}" from healing to "${match.originalSelector}"`
392+
);
392393
continue;
393394
}
394395

0 commit comments

Comments
 (0)