vault/ui/tests/integration/components/transform-role-edit-test.js
2023-10-19 09:59:12 -05:00

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');
});
});