github.com/hernad/nomad@v1.6.112/ui/tests/pages/components/topo-viz.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  import { collection, isPresent } from 'ember-cli-page-object';
     7  import TopoVizDatacenter from './topo-viz/datacenter';
     8  
     9  export default (scope) => ({
    10    scope,
    11  
    12    datacenters: collection(
    13      '[data-test-topo-viz-datacenter]',
    14      TopoVizDatacenter()
    15    ),
    16  
    17    allocationAssociationsArePresent: isPresent(
    18      '[data-test-allocation-associations]'
    19    ),
    20    allocationAssociations: collection('[data-test-allocation-association]'),
    21  });