Skip to content

Commit 04e6d53

Browse files
authored
add automation of the RGP proband tab (#2160)
* add automation of the RGP proband tab
1 parent 5fb3e19 commit 04e6d53

File tree

5 files changed

+1099
-2
lines changed

5 files changed

+1099
-2
lines changed

playwright-e2e/data/fake-user.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"lastName": "Playwright",
66
"fullName": "E2E Tester Playwright",
77
"participantGuid": "",
8+
"relationshipID": "3",
89
"birthDate": {
910
"MM": "10",
1011
"DD": "02",
@@ -24,7 +25,8 @@
2425
"streetAddress": "415 Main Street",
2526
"city": "Cambridge",
2627
"zip": "02142-1027",
27-
"phone": "6177147000"
28+
"phone": "6177147000",
29+
"secondaryPhoneNumber": "6171234000"
2830
},
2931
"doctor": {
3032
"name": "John Strange",
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export enum FamilyMember {
2+
PROBAND = 'Self',
3+
SISTER = 'Sister',
4+
BROTHER = 'Brother',
5+
MOTHER = 'Mother',
6+
FATHER = 'Father',
7+
PATERNAL_GRANDMOTHER = 'Paternal Grandmother',
8+
PATERNAL_GRANDFATHER = 'Paternal Grandfather',
9+
MATERNAL_GRANDMOTHER = 'Maternal Grandmother',
10+
MATERNAL_GRANDFATHER = 'Maternal Grandfather',
11+
DAUGHTER = 'Daughter',
12+
SON = 'Son',
13+
OTHER = 'Other',
14+
HALF_SIBLING_MATERNAL = 'Half Sibling Maternal',
15+
HALF_SIBLING_PATERNAL = 'Half Sibling Paternal',
16+
MATERNAL_AUNT = 'Maternal Aunt',
17+
MATERNAL_FIRST_COUSIN = 'Maternal First Cousin',
18+
MATERNAL_UNCLE = 'Maternal Uncle',
19+
PATERNAL_AUNT = 'Paternal Aunt',
20+
PATERNAL_FIRST_COUSIN = 'Paternal First Cousin',
21+
PATERNAL_UNCLE = 'Paternal Uncle'
22+
}

0 commit comments

Comments
 (0)