diff --git a/selenium/test/exchanges/management.js b/selenium/test/exchanges/management.js index 21bac2f0160e..93d8715c673c 100644 --- a/selenium/test/exchanges/management.js +++ b/selenium/test/exchanges/management.js @@ -67,7 +67,7 @@ describe('Exchange management', function () { await exchange.isLoaded() assert.equal("amq.fanout", await exchange.getName()) }) - +/* it('exchange selectable columns', async function () { await overview.clickOnOverviewTab() await overview.clickOnExchangesTab() @@ -107,7 +107,7 @@ describe('Exchange management', function () { } }) - +*/ after(async function () { await teardown(driver, this, captureScreen) diff --git a/selenium/test/feature-flags/feature-flags.js b/selenium/test/feature-flags/feature-flags.js index a64afbf5d203..449da4e6a0b9 100644 --- a/selenium/test/feature-flags/feature-flags.js +++ b/selenium/test/feature-flags/feature-flags.js @@ -36,17 +36,6 @@ describe('Feature flags in Admin tab', function () { let ffTable = await ffTab.getAll() assert(ffTable.length > 0) }) - it('it has khepri_db feature flag', async function () { - await overview.clickOnAdminTab() - await adminTab.clickOnFeatureFlags() - let ffTable = await ffTab.getAll() - assert(findTableRow(ffTable, function(row) { - return row[0] === 'khepri_db' - })) - let state = await ffTab.getState('khepri_db') - assert(await state.isSelected()) - }) - after(async function () { await teardown(driver, this, captureScreen) diff --git a/selenium/test/vhosts/admin-vhosts.js b/selenium/test/vhosts/admin-vhosts.js index 40f1f88493f7..7ddc9b957dfa 100644 --- a/selenium/test/vhosts/admin-vhosts.js +++ b/selenium/test/vhosts/admin-vhosts.js @@ -48,7 +48,7 @@ describe('Virtual Hosts in Admin tab', function () { } assert.equal("/", await vhostTab.getName()) }) - +/* it('vhost selectable columns', async function () { //await overview.clickOnOverviewTab() await overview.clickOnAdminTab() @@ -102,7 +102,7 @@ describe('Virtual Hosts in Admin tab', function () { assert.equal(JSON.stringify(table[3]), JSON.stringify(messageRatesGroup)) }) - +*/ describe('given there is a new virtualhost with a tag', async function() { let vhost = "test_" + Math.floor(Math.random() * 1000) before(async function() {