mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { isPresent, text } from 'ember-cli-page-object';
|
|
import fields from './form-field';
|
|
export default {
|
|
...fields,
|
|
deleteText: text('[data-test-edit-delete-text]'),
|
|
showsDelete: isPresent('[data-test-edit-delete-text]'),
|
|
errorText: text('[data-test-edit-form-error]'),
|
|
};
|