Skip to content

Commit 20dd7cc

Browse files
authored
Playwright_RGP_Skipping tests while DSM RGP is being investigated (#2237)
skipping tests while investigation is occurring
1 parent 2cd0762 commit 20dd7cc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

playwright-e2e/tests/dsm/kitUploadFlow/blood-and-rna-kit-upload-flow.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { simplifyShortID } from 'utils/faker-utils';
2323
import { saveParticipantGuid } from 'utils/faker-utils';
2424
import { ParticipantListTable } from 'dsm/component/tables/participant-list-table';
2525

26-
test.describe('Blood & RNA Kit Upload', () => {
26+
test.describe.skip('Blood & RNA Kit Upload', () => {
2727
test('Verify that a blood & rna kit can be uploaded @dsm @rgp @functional @upload', async ({ page, request}, testInfo) => {
2828
const testResultDirectory = testInfo.outputDir;
2929

@@ -54,7 +54,7 @@ test.describe('Blood & RNA Kit Upload', () => {
5454
proband.relationshipID = user.patient.relationshipID;
5555

5656
const probandTab = await proband.getFamilyMemberTab();
57-
await expect(probandTab).toBeVisible();
57+
await expect(probandTab, 'RGP Proband tab is not visible').toBeVisible();
5858
await probandTab.click();
5959
await expect(probandTab).toHaveClass('nav-link active');//Make sure the tab is in view and selected
6060

playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => {
8989
await dropdownOptions.filter({ hasText: '5' }).click();
9090
});
9191

92-
test('Verify that the proband family member tab can be filled out @dsm @functional @rgp @proband', async ({ page, request }) => {
92+
test.skip('Verify that the proband family member tab can be filled out @dsm @functional @rgp @proband', async ({ page, request }) => {
9393
const navigation = new Navigation(page, request);
9494

9595
const welcomePage = new WelcomePage(page);
@@ -115,7 +115,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => {
115115
proband.relationshipID = user.patient.relationshipID;
116116

117117
const probandTab = await proband.getFamilyMemberTab();
118-
await expect(probandTab).toBeVisible();
118+
await expect(probandTab, 'RGP Proband tab is not visible').toBeVisible();
119119

120120
//Verify that the dynamic form menu is present
121121
const jumpToMenuText = proband.getJumpToMenuText();
@@ -522,7 +522,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => {
522522
await redCapSurveyCompletedDate.fill(`${currentDate[0]}/${currentDate[1]}/${currentDate[2]}`);//[0] is MM, [1] is DD, [2] is YYYY
523523
});
524524

525-
test('Verify that a family member can be added without copying proband info @dsm @rgp @functional', async ({ page, request }) => {
525+
test.skip('Verify that a family member can be added without copying proband info @dsm @rgp @functional', async ({ page, request }) => {
526526
//Add a new family member
527527
//Go into DSM
528528
const navigation = new Navigation(page, request);
@@ -609,7 +609,7 @@ test.describe.serial('DSM Family Enrollment Handling', () => {
609609
expect(maternalGrandfatherFamilyID).toBe(probandFamilyID);
610610
});
611611

612-
test('Verify that a family member can be added using copied proband info @dsm @rgp @functional', async ({ page, request }) => {
612+
test.skip('Verify that a family member can be added using copied proband info @dsm @rgp @functional', async ({ page, request }) => {
613613
const navigation = new Navigation(page, request);
614614

615615
const welcomePage = new WelcomePage(page);

0 commit comments

Comments
 (0)