You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/tests/pages/components/token-list.js

8 lines
255 B

export default (clickable, attribute, collection, deletable) => () => {
return collection('[data-test-tokens] [data-test-tabular-row]', {
id: attribute('data-test-token', '[data-test-token]'),
token: clickable('a'),
...deletable(),
});
};