2020-06-23 09:12:04 +00:00
|
|
|
export default (collection, clickable, attribute, text, actions) => () => {
|
2020-07-29 14:55:38 +00:00
|
|
|
return collection('.consul-role-list [data-test-list-row]', {
|
|
|
|
role: clickable('a'),
|
2020-06-23 09:12:04 +00:00
|
|
|
name: attribute('data-test-role', '[data-test-role]'),
|
|
|
|
description: text('[data-test-description]'),
|
|
|
|
policy: text('[data-test-policy].policy', { multiple: true }),
|
|
|
|
serviceIdentity: text('[data-test-policy].policy-service-identity', { multiple: true }),
|
|
|
|
...actions(['edit', 'delete']),
|
|
|
|
});
|
|
|
|
};
|