File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
critical-path/memory-efficiency Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,13 @@ fixture `Memory Efficiency`
36
36
. afterEach ( async ( ) => {
37
37
await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneConfig ) ;
38
38
} ) ;
39
- test ( 'No reports/keys message and report tooltip' , async t => {
39
+ test . only . before ( async t => {
40
+ await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneConfig ) ;
41
+ // Go to Analysis Tools page
42
+ await t . click ( myRedisDatabasePage . NavigationPanel . analysisPageButton ) ;
43
+ await browserPage . Cli . sendCommandInCli ( 'flushdb' ) ;
44
+
45
+ } ) ( 'No reports/keys message and report tooltip' , async t => {
40
46
const noReportsMessage = 'No Reports foundRun "New Analysis" to generate first report.' ;
41
47
const noKeysMessage = 'No keys to displayUse Workbench Guides and Tutorials to quickly load the data.' ;
42
48
const tooltipText = 'Analyze up to 10 000 keys to get an overview of your data and recommendations' ;
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ fixture `Live Recommendations`
52
52
await databaseAPIRequests . addNewStandaloneDatabaseApi ( ossStandaloneConfig ) ;
53
53
await myRedisDatabasePage . reloadPage ( ) ;
54
54
await myRedisDatabasePage . clickOnDBByName ( ossStandaloneConfig . databaseName ) ;
55
+ await browserPage . Cli . sendCommandInCli ( 'flushdb' ) ;
55
56
} )
56
57
. afterEach ( async ( ) => {
57
58
await refreshFeaturesTestData ( ) ;
You can’t perform that action at this time.
0 commit comments