dc5d403c28
1. Includes Datacenter variable for intperolation 2. Amends text on the Settings page to reflect new keyword 3. Adds further acceptance testing around the new dashboard buttons
14 lines
442 B
JavaScript
14 lines
442 B
JavaScript
export default function(visitable, attribute, collection, text, filter) {
|
|
return {
|
|
visit: visitable('/:dc/services/:service'),
|
|
externalSource: attribute('data-test-external-source', 'h1 span'),
|
|
instances: collection('#instances [data-test-tabular-row]', {
|
|
address: text('[data-test-address]'),
|
|
}),
|
|
dashboardAnchor: {
|
|
href: attribute('href', '[data-test-dashboard-anchor]'),
|
|
},
|
|
filter: filter,
|
|
};
|
|
}
|