Skip to content

Commit 974e41b

Browse files
authored
test: skip perps e2e (#19654)
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until the template has been completely filled out, and PR status checks have passed at least once. --> ## **Description** This PR skip the regression e2e test until the UI is stable and test don't break constantly <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> ## **Changelog** <!-- If this PR is not End-User-Facing and should not show up in the CHANGELOG, you can choose to either: 1. Write `CHANGELOG entry: null` 2. Label with `no-changelog` If this PR is End-User-Facing, please write a short User-Facing description in the past tense like: `CHANGELOG entry: Added a new tab for users to see their NFTs` `CHANGELOG entry: Fixed a bug that was causing some NFTs to flicker` (This helps the Release Engineer do their job more quickly and accurately) --> CHANGELOG entry: ## **Related issues** Fixes: ## **Manual testing steps** ```gherkin Feature: my feature name Scenario: user [verb for user action] Given [describe expected initial app state] When user [verb for user action] Then [describe expected outcome] ``` ## **Screenshots/Recordings** <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> ### **Before** <!-- [screenshots/recordings] --> ### **After** <!-- [screenshots/recordings] --> ## **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.
1 parent 893b916 commit 974e41b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

e2e/specs/perps/perps-limit-long-fill.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import PerpsView from '../../pages/Perps/PerpsView';
1313
import PerpsE2E from '../../framework/PerpsE2E';
1414

1515
describe(RegressionTrade('Perps - ETH limit long fill'), () => {
16-
it('creates ETH limit long at -10%, shows open order, then fills after -15%', async () => {
16+
it.skip('creates ETH limit long at -10%, shows open order, then fills after -15%', async () => {
1717
await withFixtures(
1818
{
1919
fixture: new FixtureBuilder()

e2e/specs/perps/perps-no-funds-tutorial.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe(
1616
jest.setTimeout(150000);
1717
});
1818

19-
it('should show Start Trading on Perps tab and then tutorial screens', async () => {
19+
it.skip('should show Start Trading on Perps tab and then tutorial screens', async () => {
2020
await withFixtures(
2121
{
2222
fixture: new FixtureBuilder()

e2e/specs/perps/perps-position-liquidation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const logger = createLogger({
2121
});
2222

2323
describe(RegressionTrade('Perps Position'), () => {
24-
it('should open a long position with custom profit and close it', async () => {
24+
it.skip('should open a long position with custom profit and close it', async () => {
2525
await withFixtures(
2626
{
2727
fixture: new FixtureBuilder().build(),

e2e/specs/perps/perps-position.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const logger = createLogger({
2020
});
2121

2222
describe(RegressionTrade('Perps Position'), () => {
23-
it('should open a long position with custom profit and close it', async () => {
23+
it.skip('should open a long position with custom profit and close it', async () => {
2424
await withFixtures(
2525
{
2626
fixture: new FixtureBuilder().build(),

0 commit comments

Comments
 (0)