mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { clickable, create, visitable } from 'ember-cli-page-object';
|
|
export default create({
|
|
visit: visitable('/vault/policy/:type/:name'),
|
|
toggleEdit: clickable('[data-test-policy-edit-toggle]'),
|
|
});
|