File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
tests/e2e/tests/web/critical-path/url-handling Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 64
64
. page ( commonUrl ) ( 'Add DB using url automatically' , async t => {
65
65
databaseUsername = 'alice&&' ;
66
66
databasePassword = 'p1pp0@&' ;
67
- const codedUrl = encodeURIComponent ( `redis://${ databaseUsername } :${ databasePassword } @${ host } :${ port } ` ) ;
67
+ const codedUrl = `redis://${ databaseUsername } :${ databasePassword } @${ host } :${ port } ` ;
68
68
const connectUrlParams = {
69
69
redisUrl : codedUrl ,
70
70
databaseAlias : databaseName ,
75
75
memoryLimitMeasurementUnit : 'mb' ,
76
76
free : 'true'
77
77
} ;
78
+ console . log ( '!!!!' ) ;
79
+ console . log ( generateLink ( connectUrlParams ) ) ;
78
80
await t . navigateTo ( generateLink ( connectUrlParams ) ) ;
79
81
await t . wait ( 10_000 ) ;
80
82
await t . expect ( workbenchPage . submitCommandButton . exists ) . ok ( 'Redirection to Workbench is not correct' ) ;
You can’t perform that action at this time.
0 commit comments