open-nomad/ui/tests/pages/components/topo-viz.js
2023-04-10 15:36:59 +00:00

22 lines
506 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
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]'),
});