Files
Fleetbase-Mirror-Repo/console/tests/integration/components/two-fa-settings-test.js
2023-12-20 18:00:35 +08:00

27 lines
811 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from '@fleetbase/console/tests/helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
module('Integration | Component | two-fa-settings', function (hooks) {
setupRenderingTest(hooks);
test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`<TwoFaSettings />`);
assert.dom(this.element).hasText('');
// Template block usage:
await render(hbs`
<TwoFaSettings>
template block text
</TwoFaSettings>
`);
assert.dom(this.element).hasText('template block text');
});
});