Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/tests/web/regression/database/notification.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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');
});
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down