Skip to content

Commit c151578

Browse files
authored
Merge pull request #795 from RedisInsight/e2e/tests-fixes
[E2E] Remove auto-discovery skip label
2 parents 6bb8fce + 487a9ef commit c151578

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

tests/e2e/tests/critical-path/a-first-start-form/autodiscovery.e2e.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ fixture `Autodiscovery`
1414
.page(commonUrl)
1515
.beforeEach(async() => {
1616
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
2019
.meta({ env: env.desktop, rte: rte.none })
2120
.after(async() => {
2221
// Delete all auto-discovered databases
2322
for(let i = 0; i < standalonePorts.length; i++) {
24-
await myRedisDatabasePage.deleteDatabaseByName(`localhost:${standalonePorts[i]}`)
23+
await myRedisDatabasePage.deleteDatabaseByName(`localhost:${standalonePorts[i]}`);
2524
}
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 => {
2826
// Check that standalone DBs have been added into the application
2927
const n = await myRedisDatabasePage.dbNameList.count;
3028
for(let k = 0; k < n; k++) {

0 commit comments

Comments
 (0)