Revert "ci: no longer need to patch chromedriver in appveyor"

This reverts commit 96eac78f6e.
This commit is contained in:
Haoqun Jiang
2019-09-08 00:51:41 +08:00
parent 522a0f8d03
commit 6a2ca0ab17
3 changed files with 13 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
// 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.45.0'
fs.writeFileSync(path.resolve(__dirname, '../package.json'), JSON.stringify(pkg, null, 2))