File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
tests/e2e/tests/critical-path/a-first-start-form Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,15 @@ fixture `Autodiscovery`
14
14
. page ( commonUrl )
15
15
. beforeEach ( async ( ) => {
16
16
await acceptLicenseTerms ( ) ;
17
- } )
18
- // Marking as skipped due to the issue on Circle CI https://redislabs.atlassian.net/browse/RI-2691
19
- test . skip
17
+ } ) ;
18
+ test
20
19
. meta ( { env : env . desktop , rte : rte . none } )
21
20
. after ( async ( ) => {
22
21
// Delete all auto-discovered databases
23
22
for ( let i = 0 ; i < standalonePorts . length ; i ++ ) {
24
- await myRedisDatabasePage . deleteDatabaseByName ( `localhost:${ standalonePorts [ i ] } ` )
23
+ await myRedisDatabasePage . deleteDatabaseByName ( `localhost:${ standalonePorts [ i ] } ` ) ;
25
24
}
26
- } )
27
- ( 'Verify that when users open application for the first time, they can see all auto-discovered Standalone DBs' , async t => {
25
+ } ) ( 'Verify that when users open application for the first time, they can see all auto-discovered Standalone DBs' , async t => {
28
26
// Check that standalone DBs have been added into the application
29
27
const n = await myRedisDatabasePage . dbNameList . count ;
30
28
for ( let k = 0 ; k < n ; k ++ ) {
You can’t perform that action at this time.
0 commit comments