Skip to content

Commit bcb04f6

Browse files
committed
chore: format the device suite files
1 parent 03be09b commit bcb04f6

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/device/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ Playwright-WebKit on macOS):
5757
tunnel, capabilities, platform matrix — is covered by the pieces above
5858
and `devices.ts`. Revisit if Test Observability becomes interesting.
5959

60-
6160
## Architecture
6261

6362
```

tests/device/lib/editorPage.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,3 @@ export async function startEditing(session: DeviceSession): Promise<void> {
9090
verifyTimeoutMs: 15_000,
9191
});
9292
}
93-

tests/device/lib/gestures.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,3 @@ export async function typeText(
164164
await session.typeKeys(text);
165165
}
166166
}
167-

tests/device/lib/webdriver.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ export class DeviceSession {
133133
/** Sends W3C key actions (protocol-level key events) to the focused element. */
134134
async typeKeys(text: string): Promise<void> {
135135
await this.driver.actions().sendKeys(text).perform();
136-
await this.driver.actions().clear().catch(() => {});
136+
await this.driver
137+
.actions()
138+
.clear()
139+
.catch(() => {});
137140
}
138141

139142
/** Saves a PNG screenshot under tests/device/.artifacts. */

0 commit comments

Comments
 (0)