mirror of
https://github.com/status-im/consul.git
synced 2025-01-30 07:26:19 +00:00
31e7e32fe7
* Add sorting to ACLs tokens with tests * Create token comparator and implement in template * Upgrade @hashicorp/consul-api-double to 3.1.6 * Add navigation test to acls tokens
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
export default function(visitable, creatable, text, tokens, popoverSelect) {
|
|
return {
|
|
visit: visitable('/:dc/acls/tokens'),
|
|
update: text('[data-test-notification-update]'),
|
|
tokens: tokens(),
|
|
sort: popoverSelect(),
|
|
...creatable(),
|
|
};
|
|
}
|