From 60667f7f6651b18a6526e97f4615da22f964d202 Mon Sep 17 00:00:00 2001 From: Curtis David Date: Wed, 8 Jan 2025 17:18:22 -0500 Subject: [PATCH] test: Disable flakey chain permissions e2e (#12906) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## **Description** The purpose of this PR is to disable a couple of chain permission tests that are flaking as of recently. We aim to renable these tests in https://github.com/MetaMask/metamask-mobile/issues/12872 ## **Related issues** Fixes: ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** ### **Before** ### **After** ## **Pre-merge author checklist** - [ ] I’ve followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --- .../chains/permission-system-add-non-permitted.spec.js | 2 +- .../chains/permission-system-update-permissions.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/specs/multichain/permissions/chains/permission-system-add-non-permitted.spec.js b/e2e/specs/multichain/permissions/chains/permission-system-add-non-permitted.spec.js index 36af037bba8..a33b641f342 100644 --- a/e2e/specs/multichain/permissions/chains/permission-system-add-non-permitted.spec.js +++ b/e2e/specs/multichain/permissions/chains/permission-system-add-non-permitted.spec.js @@ -102,7 +102,7 @@ describe( ); }); - it('should add network permission when requested', async () => { + it.skip('should add network permission when requested', async () => { await withFixtures( { dapp: true, diff --git a/e2e/specs/multichain/permissions/chains/permission-system-update-permissions.spec.js b/e2e/specs/multichain/permissions/chains/permission-system-update-permissions.spec.js index 53ebea8166b..ebd1c583dd3 100644 --- a/e2e/specs/multichain/permissions/chains/permission-system-update-permissions.spec.js +++ b/e2e/specs/multichain/permissions/chains/permission-system-update-permissions.spec.js @@ -21,7 +21,7 @@ describe(SmokeMultiChainPermissions('Chain Permission Management'), () => { jest.setTimeout(150000); await TestHelpers.reverseServerPort(); }); - it('allows simultaneous granting and revoking of multiple chain permissions', async () => { + it.skip('allows simultaneous granting and revoking of multiple chain permissions', async () => { await withFixtures( { dapp: true,