Skip to content

Commit

Permalink
ci: update chromedriver version in appveyor to 2.45
Browse files Browse the repository at this point in the history
Their Chrome version has been updated.
See https://www.appveyor.com/updates/2019/02/11/
  • Loading branch information
sodatea committed May 23, 2019
1 parent 649b564 commit 197fd92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/patchChromedriver.js
@@ -1,10 +1,10 @@
// Appveyor current only ships Chrome 65
// Appveyor current only ships Chrome 72
// which is no longer supported by the latest version of Chromedriver.

const fs = require('fs')
const path = require('path')
const pkg = require('../package.json')

pkg.resolutions.chromedriver = '2.38.0'
pkg.resolutions.chromedriver = '2.45.0'

fs.writeFileSync(path.resolve(__dirname, '../package.json'), JSON.stringify(pkg, null, 2))

0 comments on commit 197fd92

Please sign in to comment.