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
4 changes: 2 additions & 2 deletions selenium/test/exchanges/management.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -107,7 +107,7 @@ describe('Exchange management', function () {
}

})

*/

after(async function () {
await teardown(driver, this, captureScreen)
Expand Down
11 changes: 0 additions & 11 deletions selenium/test/feature-flags/feature-flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions selenium/test/vhosts/admin-vhosts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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() {
Expand Down
Loading