diff --git a/.github/workflows/changeset-report.yaml b/.github/workflows/changeset-report.yaml deleted file mode 100644 index e74e7d2..0000000 --- a/.github/workflows/changeset-report.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Changeset report - -on: - push: - branches: [dev] - -jobs: - changeset-status: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v5 - with: - fetch-depth: 0 - - - name: Fetch Changesets base branch - run: git fetch origin main:main - - - uses: pnpm/action-setup@v5 - with: - version: 10 - - - uses: actions/setup-node@v6 - with: - node-version: 24.x - cache: pnpm - - - run: pnpm install --frozen-lockfile - - - name: Report pending release changes - run: pnpm changeset status --output changeset-status.json - - - uses: actions/upload-artifact@v7 - with: - name: changeset-status - path: changeset-status.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 2281569..1644209 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @tobelabs/chainwright +## 0.10.6 + +### Patch Changes + +- Fix the "renameAccount" bug in Meteor wallet + ## 0.10.5 ### Patch Changes diff --git a/package.json b/package.json index 28b8a55..309e53a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chainwright", - "version": "0.10.5", + "version": "0.10.6", "description": "Playwright Web3 wallet testing framework for end-to-end dApp automation with MetaMask, Phantom, Solflare, Petra, Meteor, and Keplr", "type": "module", "license": "MIT", diff --git a/src/wallets/meteor/actions/rename-account.meteor.ts b/src/wallets/meteor/actions/rename-account.meteor.ts index 7540785..be9c592 100644 --- a/src/wallets/meteor/actions/rename-account.meteor.ts +++ b/src/wallets/meteor/actions/rename-account.meteor.ts @@ -20,6 +20,9 @@ export async function renameAccount({ page, newAccountName }: RenameAccount) { ); const closeButton = page.locator("section[role='dialog'] > button[aria-label='Close']"); await closeButton.click(); + + const closeMenuButton = page.locator("div[id='root'] button[aria-label='Close']"); + await closeMenuButton.click(); return; }