open-vault/ui/tests/integration/components/alert-inline-test.js

18 lines
621 B
JavaScript
Raw Normal View History

2018-11-02 16:02:45 +00:00
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | alert-inline', 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`{{alert-inline type="danger" message="test message"}}`);
assert.equal(this.element.textContent.trim(), 'test message');
});
});