2020-07-20 17:12:34 +00:00
|
|
|
export default (collection, clickable, attribute, text, actions) => () => {
|
2020-08-10 14:54:51 +00:00
|
|
|
return collection('.consul-nspace-list [data-test-list-row]', {
|
2020-07-20 17:12:34 +00:00
|
|
|
nspace: clickable('a'),
|
2020-08-10 14:54:51 +00:00
|
|
|
name: attribute('data-test-nspace', '[data-test-nspace]'),
|
2020-07-20 17:12:34 +00:00
|
|
|
description: text('[data-test-description]'),
|
|
|
|
...actions(['edit', 'delete']),
|
|
|
|
});
|
|
|
|
};
|