mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
23 lines
615 B
JavaScript
23 lines
615 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, skip } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
module('Integration | Component | transform-role-edit', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
skip('it renders', async function (assert) {
|
|
// TODO: Fill out these tests, merging without to unblock other work
|
|
await render(hbs`
|
|
<TransformRoleEdit />
|
|
`);
|
|
|
|
assert.dom(this.element).hasText('template block text');
|
|
});
|
|
});
|