File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
tests/critical-path/memory-efficiency Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ export class OnboardingCardsDialog {
42
42
Complete onboarding process
43
43
*/
44
44
async completeOnboarding ( ) : Promise < void > {
45
- await t . expect ( await this . showMeAroundButton . exists ) . notOk ( 'Show me around button still visible' ) ;
46
- await t . expect ( await this . stepTitle . exists ) . notOk ( 'Onboarding tooltip still visible' ) ;
45
+ await t . expect ( this . showMeAroundButton . exists ) . notOk ( 'Show me around button still visible' ) ;
46
+ await t . expect ( this . stepTitle . exists ) . notOk ( 'Onboarding tooltip still visible' ) ;
47
47
}
48
48
/**
49
49
Click back step
Original file line number Diff line number Diff line change 78
78
await t . click ( memoryEfficiencyPage . getRecommendationButtonByName ( luaScriptRecommendation ) ) ;
79
79
await t . expect ( memoryEfficiencyPage . getRecommendationByName ( luaScriptRecommendation ) . offsetHeight )
80
80
. eql ( expandedTextContaiterSize , 'Lua script recommendation not expanded' ) ;
81
-
82
- // Verify that user can navigate by link to see the recommendation
83
- await t . click ( memoryEfficiencyPage . getRecommendationByName ( luaScriptRecommendation ) . find ( memoryEfficiencyPage . cssReadMoreLink ) ) ;
84
- await Common . checkURL ( externalPageLink ) ;
85
- // Close the window with external link to switch to the application window
86
- await t . closeWindow ( ) ;
87
81
} ) ;
88
82
// skipped due to inability to receive no recommendations for now
89
83
test . skip ( 'No recommendations message' , async t => {
You can’t perform that action at this time.
0 commit comments