Skip to content

add automation of the RGP proband tab #2160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Aug 10, 2023
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
4 changes: 3 additions & 1 deletion playwright-e2e/data/fake-user.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"lastName": "Playwright",
"fullName": "E2E Tester Playwright",
"participantGuid": "",
"relationshipID": "3",
"birthDate": {
"MM": "10",
"DD": "02",
Expand All @@ -24,7 +25,8 @@
"streetAddress": "415 Main Street",
"city": "Cambridge",
"zip": "02142-1027",
"phone": "6177147000"
"phone": "6177147000",
"secondaryPhoneNumber": "6171234000"
},
"doctor": {
"name": "John Strange",
Expand Down
22 changes: 22 additions & 0 deletions playwright-e2e/dsm/component/tabs/enums/familyMember-enum.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export enum FamilyMember {
PROBAND = 'Self',
SISTER = 'Sister',
BROTHER = 'Brother',
MOTHER = 'Mother',
FATHER = 'Father',
PATERNAL_GRANDMOTHER = 'Paternal Grandmother',
PATERNAL_GRANDFATHER = 'Paternal Grandfather',
MATERNAL_GRANDMOTHER = 'Maternal Grandmother',
MATERNAL_GRANDFATHER = 'Maternal Grandfather',
DAUGHTER = 'Daughter',
SON = 'Son',
OTHER = 'Other',
HALF_SIBLING_MATERNAL = 'Half Sibling Maternal',
HALF_SIBLING_PATERNAL = 'Half Sibling Paternal',
MATERNAL_AUNT = 'Maternal Aunt',
MATERNAL_FIRST_COUSIN = 'Maternal First Cousin',
MATERNAL_UNCLE = 'Maternal Uncle',
PATERNAL_AUNT = 'Paternal Aunt',
PATERNAL_FIRST_COUSIN = 'Paternal First Cousin',
PATERNAL_UNCLE = 'Paternal Uncle'
}
Loading