00e06301f1
* initial WIP glimmerize the controller
* wip got the filter engine type by supported backends working
* got filter by engine type working
* wip need to refactor but working ish for name
* wip working state with both filters, does not work if both fiters are set
* fixed when you have two selected filters, but broken for multiples of the same type with different names
* remove repeated engineTypes in filter list
* add disabled to power select
* fix bug of glimmer for the concurrency task.
* wording fix
* remove linkableItem and the nested contextual compnents to help with loading speed.
* add changelog
* fix some tests
* add test coverage
* Update 20481.txt
update changelog text
* test fixes 🤞
* test fix?
* address a pr comment and save
* address pr comment
27 lines
849 B
JavaScript
27 lines
849 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { create, visitable, collection, clickable, text } from 'ember-cli-page-object';
|
|
import uiPanel from 'vault/tests/pages/components/console/ui-panel';
|
|
|
|
export default create({
|
|
consoleToggle: clickable('[data-test-console-toggle]'),
|
|
visit: visitable('/vault/secrets'),
|
|
rows: collection('[data-test-auth-backend-link]', {
|
|
path: text('[data-test-secret-path]'),
|
|
menu: clickable('[data-test-popup-menu-trigger]'),
|
|
}),
|
|
configLink: clickable('[data-test-engine-config]', {
|
|
testContainer: '#ember-testing',
|
|
}),
|
|
disableButton: clickable('[data-test-confirm-action-trigger]', {
|
|
testContainer: '#ember-testing',
|
|
}),
|
|
confirmDisable: clickable('[data-test-confirm-button]', {
|
|
testContainer: '#ember-testing',
|
|
}),
|
|
console: uiPanel,
|
|
});
|