Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vpalmisano committed Apr 19, 2024
1 parent 0c6d72e commit 6fa2cab
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1181,12 +1181,9 @@ window.SERVER_USE_HTTPS = ${this.serverUseHttps};
)

// Simulate mouse clicks
await page.exposeFunction(
'mouseClick',
async (selector: string) => {
await page.click(selector)
},
)
await page.exposeFunction('mouseClick', async (selector: string) => {
await page.click(selector)
})

const lorem = new LoremIpsum({
sentencesPerParagraph: {
Expand Down

0 comments on commit 6fa2cab

Please sign in to comment.