Skip to content

Commit 5c58337

Browse files
committed
updates for e2e
1 parent 3e69291 commit 5c58337

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/e2e/tests/critical-path/tree-view/tree-view.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fixture `Tree view verifications`
2626
});
2727
test('Verify that user can see that "Tree view" mode is enabled state is saved when refreshes the page', async t => {
2828
// Verify that when user opens the application he can see that Tree View is disabled by default(Browser is selected by default)
29-
await t.expect(browserPage.browserViewButton.getStyleProperty('background-color')).eql('rgb(41, 47, 71)', 'The Browser is not selected by default');
29+
await t.expect(browserPage.browserViewButton.getStyleProperty('background-color')).eql('rgb(215, 227, 250)', 'The Browser is not selected by default');
3030
await t.expect(browserPage.treeViewArea.exists).notOk('The tree view is displayed', { timeout: 10000 });
3131

3232
await t.click(browserPage.treeViewButton);

tests/e2e/tests/regression/insights/feature-flag.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test('Verify that default config applied when remote config version is lower', a
4444

4545
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
4646

47-
await t.expect(featureVersion).eql(2.3204, 'Config with lowest version applied');
47+
await t.expect(featureVersion).eql(2.3401, 'Config with lowest version applied');
4848
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).notOk('Insights panel displayed when disabled in default config');
4949
});
5050
test('Verify that invaid remote config not applied even if its version is higher than in the default config', async t => {
@@ -54,7 +54,7 @@ test('Verify that invaid remote config not applied even if its version is higher
5454

5555
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
5656

57-
await t.expect(featureVersion).eql(2.3204, 'Config highest version not applied');
57+
await t.expect(featureVersion).eql(2.3401, 'Config highest version not applied');
5858
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).notOk('Insights panel displayed when disabled in default config');
5959
});
6060
test

0 commit comments

Comments
 (0)