diff --git a/playwright-e2e/tests/dsm/kitUploadFlow/blood-and-rna-kit-upload-flow.spec.ts b/playwright-e2e/tests/dsm/kitUploadFlow/blood-and-rna-kit-upload-flow.spec.ts index 32425f145a..df7eceadca 100644 --- a/playwright-e2e/tests/dsm/kitUploadFlow/blood-and-rna-kit-upload-flow.spec.ts +++ b/playwright-e2e/tests/dsm/kitUploadFlow/blood-and-rna-kit-upload-flow.spec.ts @@ -23,7 +23,7 @@ import { simplifyShortID } from 'utils/faker-utils'; import { saveParticipantGuid } from 'utils/faker-utils'; import { ParticipantListTable } from 'dsm/component/tables/participant-list-table'; -test.describe('Blood & RNA Kit Upload', () => { +test.describe.skip('Blood & RNA Kit Upload', () => { test('Verify that a blood & rna kit can be uploaded @dsm @rgp @functional @upload', async ({ page, request}, testInfo) => { const testResultDirectory = testInfo.outputDir; @@ -54,7 +54,7 @@ test.describe('Blood & RNA Kit Upload', () => { proband.relationshipID = user.patient.relationshipID; const probandTab = await proband.getFamilyMemberTab(); - await expect(probandTab).toBeVisible(); + await expect(probandTab, 'RGP Proband tab is not visible').toBeVisible(); await probandTab.click(); await expect(probandTab).toHaveClass('nav-link active');//Make sure the tab is in view and selected diff --git a/playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts b/playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts index a0167e9b99..fdede1d2f7 100644 --- a/playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts +++ b/playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts @@ -89,7 +89,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => { await dropdownOptions.filter({ hasText: '5' }).click(); }); - test('Verify that the proband family member tab can be filled out @dsm @functional @rgp @proband', async ({ page, request }) => { + test.skip('Verify that the proband family member tab can be filled out @dsm @functional @rgp @proband', async ({ page, request }) => { const navigation = new Navigation(page, request); const welcomePage = new WelcomePage(page); @@ -115,7 +115,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => { proband.relationshipID = user.patient.relationshipID; const probandTab = await proband.getFamilyMemberTab(); - await expect(probandTab).toBeVisible(); + await expect(probandTab, 'RGP Proband tab is not visible').toBeVisible(); //Verify that the dynamic form menu is present const jumpToMenuText = proband.getJumpToMenuText(); @@ -522,7 +522,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => { await redCapSurveyCompletedDate.fill(`${currentDate[0]}/${currentDate[1]}/${currentDate[2]}`);//[0] is MM, [1] is DD, [2] is YYYY }); - test('Verify that a family member can be added without copying proband info @dsm @rgp @functional', async ({ page, request }) => { + test.skip('Verify that a family member can be added without copying proband info @dsm @rgp @functional', async ({ page, request }) => { //Add a new family member //Go into DSM const navigation = new Navigation(page, request); @@ -609,7 +609,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => { expect(maternalGrandfatherFamilyID).toBe(probandFamilyID); }); - test('Verify that a family member can be added using copied proband info @dsm @rgp @functional', async ({ page, request }) => { + test.skip('Verify that a family member can be added using copied proband info @dsm @rgp @functional', async ({ page, request }) => { const navigation = new Navigation(page, request); const welcomePage = new WelcomePage(page);