@@ -21,14 +21,14 @@ import {
21
21
renderCreateMode ,
22
22
interceptBlueprintRequest ,
23
23
goToRegistrationStep ,
24
- clickRegisterLater ,
25
24
renderEditMode ,
26
25
interceptEditBlueprintRequest ,
27
26
openAndDismissSaveAndBuildModal ,
28
27
clickNext ,
29
28
clickBack ,
30
29
verifyCancelButton ,
31
30
clickReviewAndFinish ,
31
+ clickRegisterCheckbox ,
32
32
} from '../../wizardTestUtils' ;
33
33
34
34
const localStorageMock = ( ( ) => {
@@ -124,7 +124,6 @@ describe('Step Registration', () => {
124
124
test ( 'clicking Next leads to OpenSCAP step' , async ( ) => {
125
125
await renderCreateMode ( ) ;
126
126
await goToRegistrationStep ( ) ;
127
- await clickRegisterLater ( ) ;
128
127
await clickNext ( ) ;
129
128
await screen . findByRole ( 'heading' , {
130
129
name : 'OpenSCAP profile' ,
@@ -164,6 +163,7 @@ describe('Step Registration', () => {
164
163
165
164
await renderCreateMode ( ) ;
166
165
await goToRegistrationStep ( ) ;
166
+ await clickRegisterCheckbox ( ) ;
167
167
expect (
168
168
await screen . findByRole ( 'button' , { name : / R e v i e w a n d f i n i s h / } )
169
169
) . toBeDisabled ( ) ;
@@ -172,6 +172,7 @@ describe('Step Registration', () => {
172
172
test ( 'default registration includes rhsm, rhc and insights' , async ( ) => {
173
173
await renderCreateMode ( ) ;
174
174
await goToRegistrationStep ( ) ;
175
+ await clickRegisterCheckbox ( ) ;
175
176
await openActivationKeyDropdown ( ) ;
176
177
await selectActivationKey ( 'name0' ) ;
177
178
await goToReviewStep ( ) ;
@@ -186,10 +187,9 @@ describe('Step Registration', () => {
186
187
) ;
187
188
} ) ;
188
189
189
- test ( 'should disable dropdown when clicking Register the system later' , async ( ) => {
190
+ test ( 'should disable dropdown for Register the system later' , async ( ) => {
190
191
await renderCreateMode ( ) ;
191
192
await goToRegistrationStep ( ) ;
192
- await clickRegisterLater ( ) ;
193
193
194
194
await waitFor ( ( ) =>
195
195
expect (
@@ -208,6 +208,7 @@ describe('Step Registration', () => {
208
208
test ( 'revisit step button on Review works' , async ( ) => {
209
209
await renderCreateMode ( ) ;
210
210
await goToRegistrationStep ( ) ;
211
+ await clickRegisterCheckbox ( ) ;
211
212
await openActivationKeyDropdown ( ) ;
212
213
await selectActivationKey ( 'name0' ) ;
213
214
await goToReviewStep ( ) ;
@@ -243,6 +244,7 @@ describe('Registration request generated correctly', () => {
243
244
test ( 'register + insights + rhc' , async ( ) => {
244
245
await renderCreateMode ( ) ;
245
246
await goToRegistrationStep ( ) ;
247
+ await clickRegisterCheckbox ( ) ;
246
248
await goToReviewStep ( ) ;
247
249
// informational modal pops up in the first test only as it's tied
248
250
// to a 'imageBuilder.saveAndBuildModalSeen' variable in localStorage
@@ -268,6 +270,7 @@ describe('Registration request generated correctly', () => {
268
270
test ( 'register + insights' , async ( ) => {
269
271
await renderCreateMode ( ) ;
270
272
await goToRegistrationStep ( ) ;
273
+ await clickRegisterCheckbox ( ) ;
271
274
await clickShowAdditionalConnectionOptions ( ) ;
272
275
await deselectEnableRemoteRemediations ( ) ;
273
276
await goToReviewStep ( ) ;
@@ -292,6 +295,7 @@ describe('Registration request generated correctly', () => {
292
295
test ( 'register now' , async ( ) => {
293
296
await renderCreateMode ( ) ;
294
297
await goToRegistrationStep ( ) ;
298
+ await clickRegisterCheckbox ( ) ;
295
299
await clickShowAdditionalConnectionOptions ( ) ;
296
300
await deselectPredictiveAnalytics ( ) ;
297
301
await goToReviewStep ( ) ;
@@ -320,7 +324,6 @@ describe('Registration request generated correctly', () => {
320
324
test ( 'register later' , async ( ) => {
321
325
await renderCreateMode ( ) ;
322
326
await goToRegistrationStep ( ) ;
323
- await clickRegisterLater ( ) ;
324
327
await goToReviewStep ( ) ;
325
328
const receivedRequest = await interceptBlueprintRequest ( CREATE_BLUEPRINT ) ;
326
329
@@ -337,6 +340,7 @@ describe('Registration request generated correctly', () => {
337
340
test ( 'register with no key in local storage' , async ( ) => {
338
341
await renderCreateMode ( ) ;
339
342
await goToRegistrationStep ( ) ;
343
+ await clickRegisterCheckbox ( ) ;
340
344
341
345
await screen . findByDisplayValue ( 'name0' ) ;
342
346
await goToReviewStep ( ) ;
@@ -364,6 +368,7 @@ describe('Registration request generated correctly', () => {
364
368
await renderCreateMode ( ) ;
365
369
localStorage . setItem ( 'imageBuilder.recentActivationKey' , 'name1' ) ;
366
370
await goToRegistrationStep ( ) ;
371
+ await clickRegisterCheckbox ( ) ;
367
372
368
373
await screen . findByDisplayValue ( 'name1' ) ;
369
374
await goToReviewStep ( ) ;
0 commit comments