12 lines
406 B
JavaScript
12 lines
406 B
JavaScript
import { collection, isPresent } from 'ember-cli-page-object';
|
|
import TopoVizDatacenter from './topo-viz/datacenter';
|
|
|
|
export default scope => ({
|
|
scope,
|
|
|
|
datacenters: collection('[data-test-topo-viz-datacenter]', TopoVizDatacenter()),
|
|
|
|
allocationAssociationsArePresent: isPresent('[data-test-allocation-associations]'),
|
|
allocationAssociations: collection('[data-test-allocation-association]'),
|
|
});
|