From 570c4d1230ab9b6c86cb5036d0946964bb08e2db Mon Sep 17 00:00:00 2001 From: KateChuen <45409515+KateChuen@users.noreply.github.com> Date: Thu, 26 Jan 2023 16:33:41 -0500 Subject: [PATCH] Changes to test cumulus is working on a 5.1 feature --- cumulus-configuration.json | 3 +++ .../b2b-user-registration-e2e-spec.ts | 14 +++++++------- .../b2b-user-registration.core-e2e-spec.ts | 10 +++++----- 3 files changed, 15 insertions(+), 12 deletions(-) create mode 100644 cumulus-configuration.json diff --git a/cumulus-configuration.json b/cumulus-configuration.json new file mode 100644 index 00000000000..262de4b84cf --- /dev/null +++ b/cumulus-configuration.json @@ -0,0 +1,3 @@ +{ + "backlogIds": ["CXSPA"] +} \ No newline at end of file diff --git a/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration-e2e-spec.ts b/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration-e2e-spec.ts index 79364311e27..f98e2ee6543 100644 --- a/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration-e2e-spec.ts +++ b/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration-e2e-spec.ts @@ -24,27 +24,27 @@ context('B2B - User Registration', () => { cy.visit('/'); }); - it('should navigate to organization user registration page', () => { + it('should navigate to organization user registration page (CXSPA-215)', () => { navigateToOrganizationUserRegisterPage(); }); - it('should fill registration form and register user', () => { + it('should fill registration form and register user (CXSPA-215)', () => { fillOrganizationUserRegistrationForm( getSampleUser(), 'Please register my account' ); }); - it('should verify tabbing order', () => { + it('should verify tabbing order (CXSPA-215)', () => { // Accessibility verifyTabbingOrder(); }); - it('should submit the form filled with data', () => { + it('should submit the form filled with data (CXSPA-215)', () => { submitOrganizationUserRegistrationForm(); }); - it('should verify global message after successful registration', () => { + it('should verify global message after successful registration (CXSPA-215)', () => { const message = 'Thank you for registering! A representative will contact you shortly and confirm your access information.'; verifyGlobalMessageAfterRegistration(message); @@ -57,7 +57,7 @@ context('B2B - User Registration', () => { cy.visit('/'); }); - it('should display validation errors if form is empty', () => { + it('should display validation errors if form is empty (CXSPA-215)', () => { navigateToOrganizationUserRegisterPage(); /* @@ -67,7 +67,7 @@ context('B2B - User Registration', () => { verifyFormErrors(); }); - it('should display error global message if user exists', () => { + it('should display error global message if user exists (CXSPA-215)', () => { let user = getSampleUser(); user.email = myCompanyAdminUser.registrationData?.email; diff --git a/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration.core-e2e-spec.ts b/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration.core-e2e-spec.ts index ac860e1a17c..2dd94d9d977 100644 --- a/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration.core-e2e-spec.ts +++ b/projects/storefrontapp-e2e-cypress/cypress/integration/b2b/regression/user-registration/b2b-user-registration.core-e2e-spec.ts @@ -21,27 +21,27 @@ context('B2B - User Registration', () => { cy.visit('/'); }); - it('should navigate to organization user registration page', () => { + it('should navigate to organization user registration page (CXSPA-215)', () => { navigateToOrganizationUserRegisterPage(); }); - it('should fill registration form and register user', () => { + it('should fill registration form and register user (CXSPA-215)', () => { fillOrganizationUserRegistrationForm( getSampleUser(), 'Please register my account' ); }); - it('should verify tabbing order', () => { + it('should verify tabbing order (CXSPA-215)', () => { // Accessibility verifyTabbingOrder(); }); - it('should submit the form filled with data', () => { + it('should submit the form filled with data (CXSPA-215)', () => { submitOrganizationUserRegistrationForm(); }); - it('should verify global message after successful registration', () => { + it('should verify global message after successful registration (CXSPA-215)', () => { const message = 'Thank you for registering! A representative will contact you shortly and confirm your access information.'; verifyGlobalMessageAfterRegistration(message);