Open Issues Need Help
View All on GitHubAI Summary: The issue is a TypeScript import error when using the `@tenkeylabs/dappwright` package. The user is getting a `ts(2614)` error because they're trying to import `Dappwright` as a named export when it's actually a default export. The solution involves changing the import statement to use `import Dappwright from "@tenkeylabs/dappwright"`, correcting the import and allowing access to the wallet methods.
🏌🏼E2E testing for dApps using Playwright + MetaMask & Coinbase Wallet
AI Summary: Debug and resolve a Playwright E2E test failure specifically impacting mobile (MetaMask) browser contexts. The issue is a timeout during the `beforeEach` hook, preventing tests from running due to the MetaMask extension not closing properly. Solutions involve investigating why the extension isn't closing, potentially adjusting timeout settings, or implementing robust skipping logic for mobile tests.
🏌🏼E2E testing for dApps using Playwright + MetaMask & Coinbase Wallet