From 197fd92c735f4c5d9a5dace69698565bd8bf3e4b Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Thu, 23 May 2019 21:55:56 +0800 Subject: [PATCH] ci: update chromedriver version in appveyor to 2.45 Their Chrome version has been updated. See https://www.appveyor.com/updates/2019/02/11/ --- scripts/patchChromedriver.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/patchChromedriver.js b/scripts/patchChromedriver.js index 5c52c6a6e4..1c93df0e19 100644 --- a/scripts/patchChromedriver.js +++ b/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))