@@ -27,11 +27,6 @@ test.describe('severity-1 #smoke', () => {
2727
2828 await page . waitForURL ( / o a u t h \/ / ) ;
2929
30- // reload page with React experiment params
31- await page . goto (
32- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
33- ) ;
34-
3530 await signin . fillOutEmailFirstForm ( credentials . email ) ;
3631 await signin . fillOutPasswordForm ( credentials . password ) ;
3732
@@ -49,10 +44,6 @@ test.describe('severity-1 #smoke', () => {
4944
5045 await page . waitForURL ( / o a u t h \/ / ) ;
5146
52- // reload page with React experiment params
53- await page . goto (
54- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
55- ) ;
5647 await signin . fillOutEmailFirstForm ( credentials . email ) ;
5748 await signin . fillOutPasswordForm ( credentials . password ) ;
5849
@@ -67,11 +58,6 @@ test.describe('severity-1 #smoke', () => {
6758 await page . waitForURL ( / o a u t h \/ s i g n i n / ) ;
6859 await expect ( page ) . toHaveURL ( / o a u t h \/ s i g n i n / ) ;
6960
70- // reload page with React experiment params
71- await page . goto (
72- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
73- ) ;
74-
7561 await expect ( signin . cachedSigninHeading ) . toBeVisible ( ) ;
7662 // Email is prefilled
7763 await expect ( page . getByText ( credentials . email ) ) . toBeVisible ( ) ;
@@ -92,10 +78,6 @@ test.describe('severity-1 #smoke', () => {
9278
9379 await page . waitForURL ( / o a u t h \/ / ) ;
9480
95- // reload page with React experiment params
96- await page . goto (
97- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
98- ) ;
9981 await signin . fillOutEmailFirstForm ( credentials . email ) ;
10082 await signin . fillOutPasswordForm ( credentials . password ) ;
10183
@@ -110,11 +92,6 @@ test.describe('severity-1 #smoke', () => {
11092 await page . waitForURL ( / o a u t h \/ s i g n i n / ) ;
11193 await expect ( page ) . toHaveURL ( / o a u t h \/ s i g n i n / ) ;
11294
113- // reload page with React experiment params
114- await page . goto (
115- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
116- ) ;
117-
11895 await expect ( signin . cachedSigninHeading ) . toBeVisible ( ) ;
11996 // Email is prefilled
12097 await expect ( page . getByText ( credentials . email ) ) . toBeVisible ( ) ;
@@ -128,11 +105,6 @@ test.describe('severity-1 #smoke', () => {
128105
129106 await page . waitForURL ( / o a u t h \/ / ) ;
130107
131- // reload page with React experiment params
132- await page . goto (
133- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
134- ) ;
135-
136108 // User will have to re-enter login information
137109 await signin . fillOutEmailFirstForm ( credentials . email ) ;
138110 await signin . fillOutPasswordForm ( credentials . password ) ;
@@ -160,11 +132,6 @@ test.describe('severity-1 #smoke', () => {
160132
161133 await page . waitForURL ( / o a u t h \/ / ) ;
162134
163- // reload page with React experiment params
164- await page . goto (
165- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
166- ) ;
167-
168135 await signin . fillOutEmailFirstForm ( credentials . email ) ;
169136 await signin . fillOutPasswordForm ( credentials . password ) ;
170137
@@ -206,11 +173,6 @@ test.describe('severity-1 #smoke', () => {
206173 await page . waitForURL ( / o a u t h \/ s i g n i n / ) ;
207174 await expect ( page ) . toHaveURL ( / o a u t h \/ s i g n i n / ) ;
208175
209- // reload page with React experiment params
210- await page . goto (
211- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
212- ) ;
213-
214176 // Cached user detected
215177 // redirect is slow, wait for the cached signin heading to appear
216178 await expect ( signin . cachedSigninHeading ) . toBeVisible ( ) ;
@@ -245,11 +207,6 @@ test.describe('severity-1 #smoke', () => {
245207
246208 await page . waitForURL ( / o a u t h \/ / ) ;
247209
248- // reload page with React experiment params
249- await page . goto (
250- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
251- ) ;
252-
253210 await signup . fillOutEmailForm ( email ) ;
254211 await expect ( signup . signupFormHeading ) . toBeVisible ( ) ;
255212 await signup . fillOutSignupForm ( password , AGE_21 ) ;
@@ -268,11 +225,6 @@ test.describe('severity-1 #smoke', () => {
268225 await page . waitForURL ( / o a u t h \/ s i g n i n / ) ;
269226 await expect ( page ) . toHaveURL ( / o a u t h \/ s i g n i n / ) ;
270227
271- // reload page with React experiment params
272- await page . goto (
273- `${ page . url ( ) } &forceExperiment=generalizedReactApp&forceExperimentGroup=react`
274- ) ;
275-
276228 await expect ( signin . cachedSigninHeading ) . toBeVisible ( ) ;
277229 await expect ( page . getByText ( email ) ) . toBeVisible ( ) ;
278230 } ) ;
0 commit comments