Skip to content

Commit

Permalink
[js] Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Mar 28, 2024
1 parent 4fc6be3 commit 2be499f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion javascript/node/selenium-webdriver/bidi/browsingContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ class BrowsingContext {
captureScreenshotParameters !== undefined &&
!(captureScreenshotParameters instanceof CaptureScreenshotParameters)
) {
throw new InvalidArgumentError(`Pass in a CaptureScreenshotParameters object. Received: ${captureScreenshotParameters}`)
throw new InvalidArgumentError(
`Pass in a CaptureScreenshotParameters object. Received: ${captureScreenshotParameters}`,
)
}

const screenshotParams = new Map()
Expand Down

0 comments on commit 2be499f

Please sign in to comment.