Files
Fleetbase-Mirror-Repo/console/tests/integration/components/modals/validate-password-test.js

27 lines
829 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 | modals/validate-password', 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`<Modals::ValidatePassword />`);
assert.dom().hasText('');
// Template block usage:
await render(hbs`
<Modals::ValidatePassword>
template block text
</Modals::ValidatePassword>
`);
assert.dom().hasText('template block text');
});
});