ChainSafe / dappeteer

[DEPRECATED]🏌🏼‍E2E testing for dApps using Puppeteer + MetaMask
Other
492 stars 154 forks source link

Not compatible with Node.js 18 (next LTS) #158

Closed VladimirMikulic closed 1 year ago

VladimirMikulic commented 2 years ago

Describe the bug

The package can't be installed on Node.js 18. (which will be the LTS version in a few days at the time of this writing)

To Reproduce

  1. Install Node.js 18
  2. Try to install @chainsafe/dappeteer

Expected behavior

I'd expect package to be installable on Node.js 18. The fix would be to replace this (package.json):

"engines": {
  "node": "16"
}

with

"engines": {
  "node": ">=16"
},

Screenshots

Screenshot_20221017_134517