Skip to content

Commit

Permalink
[js] Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Mar 13, 2024
1 parent 77521cc commit 9fa8a62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion javascript/node/selenium-webdriver/bidi/browser.js
Expand Up @@ -66,7 +66,6 @@ class Browser {

await this.bidi.send(command)
}

}

async function getBrowserInstance(driver) {
Expand Down
6 changes: 3 additions & 3 deletions javascript/node/selenium-webdriver/test/bidi/browser_test.js
Expand Up @@ -19,8 +19,8 @@

const assert = require('assert')
const firefox = require('../../firefox')
const {ignore, Pages, suite} = require('../../lib/test')
const {Browser, By, until} = require('../..')
const { suite } = require('../../lib/test')
const { Browser } = require('../..')
const BrowserBiDi = require('../../bidi/browser')

suite(
Expand Down Expand Up @@ -81,5 +81,5 @@ suite(
})
})
},
{browsers: [Browser.FIREFOX]},
{ browsers: [Browser.FIREFOX] },
)

0 comments on commit 9fa8a62

Please sign in to comment.