mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* wip tests
* Move text-file to addon
* rename fileName to filename, initial cleanup of text-fil
* rename args, rename test selector
* fix eye-con, remove enterAsText from file object
* add tests
* move files back to original location
* rename files via git for git diff
* adjsut test
* Revert "wip tests"
This reverts commit 63716a1e64
.
* fix policy form input
* cleanup conditional
* add bottom margin
* add element id
* change arg name
* add text area input test
* add upload test to policy form
Co-authored-by: Chelsea Shaw <cshaw@hashicorp.com>
8 lines
265 B
JavaScript
8 lines
265 B
JavaScript
import { clickable, isPresent } from 'ember-cli-page-object';
|
|
|
|
export default {
|
|
textareaIsPresent: isPresent('[data-test-textarea]'),
|
|
copyButtonIsPresent: isPresent('[data-test-copy-button]'),
|
|
toggleMasked: clickable('[data-test-button="toggle-masked"]'),
|
|
};
|