File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/e2e/tests/smoke/cli Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ test('Verify that user can use blocking command', async t => {
45
45
// Open CLI
46
46
await t . click ( cliPage . cliExpandButton ) ;
47
47
// Check that CLI is opened
48
- await t . expect ( cliPage . cliArea . exists ) . ok ( 'CLI area is not displayed' ) ;
48
+ await t . expect ( cliPage . cliArea . visible ) . ok ( 'CLI area is not displayed' ) ;
49
49
// Type blocking command
50
50
await t . typeText ( cliPage . cliCommandInput , 'blpop newKey 10000' ) ;
51
51
await t . pressKey ( 'enter' ) ;
@@ -55,7 +55,7 @@ test('Verify that user can use blocking command', async t => {
55
55
// Collaple CLI
56
56
await t . click ( cliPage . cliCollapseButton ) ;
57
57
// Verify that user can collapse CLI
58
- await t . expect ( cliPage . cliArea . exists ) . notOk ( 'CLI area should still displayed' ) ;
58
+ await t . expect ( cliPage . cliArea . visible ) . notOk ( 'CLI area should still displayed' ) ;
59
59
} ) ;
60
60
test
61
61
. meta ( { env : env . web } ) ( 'Verify that user can use unblocking command' , async t => {
You can’t perform that action at this time.
0 commit comments