github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui-v2/tests/pages/dc/acls/index.js (about) 1 export default function(visitable, deletable, creatable, clickable, attribute, collection, filter) { 2 return creatable({ 3 visit: visitable('/:dc/acls'), 4 acls: collection( 5 '[data-test-tabular-row]', 6 deletable({ 7 name: attribute('data-test-acl', '[data-test-acl]'), 8 acl: clickable('a'), 9 actions: clickable('label'), 10 use: clickable('[data-test-use]'), 11 confirmUse: clickable('button.type-delete'), 12 }) 13 ), 14 filter: filter, 15 }); 16 }