Skip to content

Commit 6db51ba

Browse files
committed
update feature config version to 2.3201
1 parent 58a3305 commit 6db51ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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.32, 'Config with lowest version applied');
47+
await t.expect(featureVersion).eql(2.3201, '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.32, 'Config highest version not applied');
57+
await t.expect(featureVersion).eql(2.3201, '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)