de95a6a325
* Add sorting to ACLs policies with comparator * Add acls/roles sorting test * Add navigation test for acls/policies * Update onchange value for sorting policies
9 lines
328 B
JavaScript
9 lines
328 B
JavaScript
export default (collection, clickable, attribute, text, actions) => () => {
|
|
return collection('.consul-policy-list [data-test-list-row]', {
|
|
name: attribute('data-test-policy', '[data-test-policy]'),
|
|
description: text('[data-test-description]'),
|
|
policy: clickable('a'),
|
|
...actions(['edit', 'delete']),
|
|
});
|
|
};
|