Skip to content

Commit e3f3cf7

Browse files
Merge pull request #3404 from RedisInsight/e2e/feature/RI-5402-ai-assistant
E2e/feature/ri 5402 ai assistant
2 parents ecd467c + 237ffb8 commit e3f3cf7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/e2e/pageObjects/components/insights-panel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ExploreTab } from './explore-tab';
55

66
export class InsightsPanel {
77
// CONTAINERS
8-
sidePanel = Selector('[data-testid=insights-panel]');
8+
sidePanel = Selector('[data-testid=side-panels-insights]');
99
explorePanelButton = Selector('[data-testid=insights-trigger]');
1010
closeButton = Selector('[data-testid=close-insights-btn]');
1111
activeTab = Selector('[class*=euiTab-isSelected]');

tests/e2e/tests/web/critical-path/database-overview/database-overview.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ test
151151
})('Verify that user can see additional information in Overview: Connected Clients, Commands/Sec, CPU (%) using Standalone DB connection type', async t => {
152152
const commandsSecBeforeEdit = await browserPage.OverviewPanel.overviewCommandsSec.textContent;
153153
await browserPage.OverviewPanel.waitForCpuIsCalculated();
154-
const cpuBeforeEdit = (await browserPage.OverviewPanel.overviewCpu.textContent).split(' ')[0];
155154
//Verify that additional information in Overview: Connected Clients, Commands/Sec, CPU (%) is displayed
156155
await t.expect(browserPage.OverviewPanel.overviewConnectedClients.exists).ok('Connected Clients is dispalyed in the Overview');
157156
await t.expect(browserPage.OverviewPanel.overviewCommandsSec.exists).ok('Commands/Sec is dispalyed in the Overview');
@@ -161,6 +160,7 @@ test
161160
const tutorials = await browserPage.InsightsPanel.setActiveTab(ExploreTabs.Tutorials);
162161
await t.click(tutorials.dataStructureAccordionTutorialButton);
163162
await t.click(tutorials.internalLinkWorkingWithHashes);
163+
const cpuBeforeEdit = (await browserPage.OverviewPanel.overviewCpu.textContent).split(' ')[0];
164164
await tutorials.runBlockCode('Create a hash');
165165
//Verify that CPU and commands per second parameters are changed
166166
const commandsSecAfterEdit = await browserPage.OverviewPanel.overviewCommandsSec.textContent;

tests/e2e/tests/web/smoke/database/autodiscover-db.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test
2828
// Verify redis stack icon for RE Cloud with all 5 modules
2929
await t.expect(myRedisDatabasePage.redisStackIcon.visible).ok('Redis Stack icon not found for RE Cloud db with all 5 modules');
3030
});
31-
test
31+
test.skip
3232
.meta({ rte: rte.reCloud })('Verify that user can add a subscription via auto-discover flow', async t => {
3333
await myRedisDatabasePage.AddRedisDatabase.addAutodiscoverRECloudDatabase(
3434
cloudDatabaseConfig.accessKey,

0 commit comments

Comments
 (0)