vault/ui/tests/pages/settings/auth/configure/section.js
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

17 lines
507 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { create, clickable, visitable, collection } from 'ember-cli-page-object';
import fields from '../../../components/form-field';
import flashMessage from '../../../components/flash-message';
export default create({
...fields,
tabs: collection('[data-test-auth-section-tab]'),
visit: visitable('/vault/settings/auth/configure/:path/:section'),
flash: flashMessage,
save: clickable('[data-test-save-config]'),
});