Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions playwright-e2e/tests/rgp/dsm-family-enrollment.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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();
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down