21 lines
692 B
JavaScript
21 lines
692 B
JavaScript
export default function(visitable, attribute, collection, text, filter) {
|
|
return {
|
|
visit: visitable('/:dc/services/:service'),
|
|
externalSource: attribute('data-test-external-source', 'h1 span'),
|
|
nodes: collection('[data-test-node]', {
|
|
name: attribute('data-test-node'),
|
|
}),
|
|
healthy: collection('[data-test-healthy] [data-test-node]', {
|
|
name: attribute('data-test-node'),
|
|
address: text('header strong'),
|
|
id: text('header em'),
|
|
}),
|
|
unhealthy: collection('[data-test-unhealthy] [data-test-node]', {
|
|
name: attribute('data-test-node'),
|
|
address: text('header strong'),
|
|
id: text('header em'),
|
|
}),
|
|
filter: filter,
|
|
};
|
|
}
|