Skip to content

Commit b95210b

Browse files
authored
Expand WESTERN_FIRST_NAMES and WESTERN_LAST_NAMES arrays (#37)
The previous pool of 14 first names × 14 last names = 196 combinations was too small, causing frequent collisions in tests that generate multiple random users (e.g. with randomFullName()). Expanded to 66 first names × 76 last names = 5,016 combinations.
1 parent 0069b74 commit b95210b

1 file changed

Lines changed: 114 additions & 0 deletions

File tree

src/constants/names.ts

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,145 @@ export const WESTERN_FIRST_NAMES = [
3535
"Alice",
3636
"Amanda",
3737
"Amy",
38+
"Andrew",
39+
"Angela",
40+
"Anna",
41+
"Anthony",
3842
"Benjamin",
43+
"Brandon",
44+
"Brian",
45+
"Caroline",
46+
"Catherine",
47+
"Charles",
48+
"Charlotte",
49+
"Christina",
50+
"Christopher",
51+
"Daniel",
3952
"David",
53+
"Diana",
54+
"Edward",
55+
"Elizabeth",
56+
"Emily",
4057
"Emma",
4158
"Esther",
59+
"Ethan",
60+
"George",
61+
"Grace",
62+
"Hannah",
63+
"Henry",
64+
"Isabella",
65+
"Jack",
66+
"James",
67+
"Jennifer",
68+
"Jessica",
69+
"John",
70+
"Jonathan",
71+
"Joseph",
72+
"Katherine",
73+
"Laura",
74+
"Lucas",
75+
"Margaret",
76+
"Maria",
77+
"Matthew",
78+
"Michael",
79+
"Nathan",
80+
"Nicholas",
4281
"Olivia",
82+
"Patricia",
83+
"Patrick",
84+
"Peter",
85+
"Rachel",
86+
"Rebecca",
87+
"Richard",
88+
"Robert",
4389
"Ruby",
90+
"Samuel",
4491
"Sarah",
92+
"Sebastian",
93+
"Sophia",
94+
"Stephen",
95+
"Thomas",
4596
"Victoria",
97+
"William",
4698
];
4799

48100
export const WESTERN_LAST_NAMES = [
101+
"Adams",
102+
"Allen",
49103
"Anderson",
104+
"Baker",
105+
"Barnes",
106+
"Bell",
107+
"Bennett",
108+
"Brooks",
50109
"Brown",
110+
"Butler",
111+
"Campbell",
112+
"Carter",
113+
"Clark",
114+
"Collins",
115+
"Cooper",
116+
"Cox",
117+
"Crawford",
51118
"Davis",
119+
"Edwards",
120+
"Evans",
121+
"Fisher",
122+
"Foster",
123+
"Garcia",
124+
"Green",
125+
"Griffin",
126+
"Hall",
127+
"Harris",
128+
"Hayes",
129+
"Henderson",
130+
"Hill",
131+
"Howard",
132+
"Hughes",
52133
"Jackson",
53134
"Johnson",
54135
"Jones",
136+
"Kelly",
137+
"King",
138+
"Lee",
139+
"Lewis",
140+
"Long",
141+
"Martin",
142+
"Martinez",
55143
"Miller",
144+
"Mitchell",
56145
"Moore",
146+
"Morgan",
147+
"Morris",
148+
"Murphy",
149+
"Nelson",
150+
"Parker",
151+
"Perry",
152+
"Peterson",
153+
"Phillips",
154+
"Reed",
155+
"Roberts",
156+
"Robinson",
157+
"Rogers",
158+
"Ross",
159+
"Russell",
160+
"Scott",
57161
"Smith",
162+
"Stewart",
163+
"Sullivan",
58164
"Taylor",
59165
"Thomas",
166+
"Thompson",
167+
"Turner",
168+
"Walker",
169+
"Ward",
170+
"Watson",
60171
"White",
61172
"Williams",
62173
"Wilson",
174+
"Wood",
175+
"Wright",
176+
"Young",
63177
];
64178

65179
export const CYRILLIC_FIRST_NAMES = [

0 commit comments

Comments
 (0)