open-nomad/ui/tests/pages/components/gauge-chart.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
313 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2020-05-11 23:58:17 +00:00
import { isPresent, text } from 'ember-cli-page-object';
2021-12-28 14:45:20 +00:00
export default (scope) => ({
2020-05-11 23:58:17 +00:00
scope,
svgIsPresent: isPresent('[data-test-gauge-svg]'),
label: text('[data-test-label]'),
percentage: text('[data-test-percentage]'),
});