Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MidhunSureshR committed Feb 5, 2025
1 parent 867586d commit f3835d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion playwright/e2e/crypto/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,11 @@ export async function deleteCachedSecrets(page: Page) {
* the expected number of devices were not found by then, an
* error is thrown.
*/
export async function waitForDevices(app: ElementAppPage, userId: string, expectedNumberOfDevices: number): Promise<void> {
export async function waitForDevices(
app: ElementAppPage,
userId: string,
expectedNumberOfDevices: number,
): Promise<void> {
const result = await app.client.evaluate(
async (cli, { userId, expectedNumberOfDevices }) => {
for (let i = 0; i < 10; ++i) {
Expand Down

0 comments on commit f3835d6

Please sign in to comment.