diff --git a/tests/e2e/tests/electron/critical-path/workbench/json-workbench.e2e.ts b/tests/e2e/tests/electron/critical-path/workbench/json-workbench.e2e.ts index cd3c0bea8a..73aa897ab9 100644 --- a/tests/e2e/tests/electron/critical-path/workbench/json-workbench.e2e.ts +++ b/tests/e2e/tests/electron/critical-path/workbench/json-workbench.e2e.ts @@ -27,7 +27,8 @@ fixture `JSON verifications at Workbench` await workbenchPage.sendCommandInWorkbench(`FT.DROPINDEX ${indexName} DD`); await databaseAPIRequests.deleteStandaloneDatabaseApi(ossStandaloneRedisearch); }); -test('Verify that user can see result in Table and Text view for JSON data types for FT.AGGREGATE command in Workbench', async t => { +// TODO unskip after resolving https://redislabs.atlassian.net/browse/RI-6670 +test.skip('Verify that user can see result in Table and Text view for JSON data types for FT.AGGREGATE command in Workbench', async t => { indexName = Common.generateWord(5); const commandsForSend = [ `FT.CREATE ${indexName} ON JSON SCHEMA $.user.name AS name TEXT $.user.tag AS country TAG`, diff --git a/tests/e2e/tests/web/critical-path/browser/search-capabilities.e2e.ts b/tests/e2e/tests/web/critical-path/browser/search-capabilities.e2e.ts index 0c6dcde6d0..ca8c6b5093 100644 --- a/tests/e2e/tests/web/critical-path/browser/search-capabilities.e2e.ts +++ b/tests/e2e/tests/web/critical-path/browser/search-capabilities.e2e.ts @@ -202,7 +202,7 @@ test.requestHooks(logger) await browserPage.Cli.sendCommandInCli(`FT.DROPINDEX ${indexName}`); await databaseAPIRequests.deleteStandaloneDatabaseApi(ossStandaloneBigConfig); })('Index creation', async t => { - const createIndexLink = 'https://redis.io/docs/latest/commands/ft.create/?utm_source=redisinsight&utm_medium=app&utm_campaign=browser_search'; + const createIndexLink = 'https://redis.io/docs/latest/commands/ft.create/'; // Verify that telemetry event 'SEARCH_MODE_CHANGED' sent await t.click(browserPage.redisearchModeBtn); diff --git a/tests/e2e/tests/web/regression/database/notification.e2e.ts b/tests/e2e/tests/web/regression/database/notification.e2e.ts index 31b3424c68..ee1ea6690d 100644 --- a/tests/e2e/tests/web/regression/database/notification.e2e.ts +++ b/tests/e2e/tests/web/regression/database/notification.e2e.ts @@ -57,7 +57,7 @@ test.before(async() => { await t.click(browserPage.NavigationPanel.myRedisDBButton); await t.hover(myRedisDatabasePage.iconNotUsedDatabase); await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('Probabilistic data structures', 'there is no info about module'); - await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('free Cloud databases will be deleted after 15 days of inactivity.', 'there is no expected info'); + await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('Free Cloud DBs auto-delete after 15 days of inactivity.', 'there is no expected info'); await myRedisDatabasePage.clickOnDBByName(ossStandaloneConfig.databaseName); await t.click(browserPage.NavigationPanel.myRedisDBButton); @@ -66,5 +66,5 @@ test.before(async() => { await t.hover(myRedisDatabasePage.iconDeletedDatabase); await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('Build your app with Redis Cloud', 'there is no common'); - await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('Free Cloud DBs auto-delete after 15 days', 'there is no expected info'); + await t.expect(myRedisDatabasePage.notificationUnusedDbMessage.textContent).contains('Free Cloud DBs auto-delete after 15 days of inactivity.', 'there is no expected info'); }); diff --git a/tests/e2e/tests/web/regression/insights/live-recommendations.e2e.ts b/tests/e2e/tests/web/regression/insights/live-recommendations.e2e.ts index 7bfc130c7a..ec63f56d81 100644 --- a/tests/e2e/tests/web/regression/insights/live-recommendations.e2e.ts +++ b/tests/e2e/tests/web/regression/insights/live-recommendations.e2e.ts @@ -141,7 +141,7 @@ test // Verify that the INSIGHTS_RECOMMENDATIONS_VOTED event sent with Database ID, Recommendation_name, Vote type parameters when user voted for recommendation await telemetry.verifyEventHasProperties(telemetryEvent, expectedProperties, logger); - await telemetry.verifyEventPropertyValue(telemetryEvent, 'name', 'updateDatabase', logger); + await telemetry.verifyEventPropertyValue(telemetryEvent, 'name', 'redisVersion', logger); await telemetry.verifyEventPropertyValue(telemetryEvent, 'vote', notUsefulVoteOption, logger); // Verify that user can see previous votes when reload the page