mint-pz

Results 5 comments of mint-pz

> Cannot find module 'tailchat-types' or its I was using pnpm@9 and confirm using pnpm@8 solved the problem

Any solutions here? I got the same error as @moshmage - MetaMask extension version: v10.31.0, - @chainsafe/dappeteer: "^5.2.0" - puppeteer: "^20.8.1"

Hey @undefinedlol, Can I know if you tested it with mocha? Did it work then?

I don't get these issues anymore by using this config: https://github.com/ChainSafe/dappeteer/blob/master/docs/JEST.md#custom-example-without-preset But you may get some others and here is my workaround: **1. environment.js** ```js const NodeEnvironment = require('jest-environment-node').TestEnvironment ```...

I tried to reload the metamask page and here is my workaround code: ```js const browser = await dappeteer.launch({ headless: false }) await sleep(2000) const pages = await browser.pages() for...