open-vault/ui/tests/integration/components/toolbar-actions-test.js

16 lines
554 B
JavaScript
Raw Normal View History

2019-02-14 16:04:46 +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 | toolbar-actions', function(hooks) {
setupRenderingTest(hooks);
test('it renders', async function(assert) {
await render(hbs`<ToolbarActions>These are the toolbar actions</ToolbarActions>`);
assert.equal(this.element.textContent.trim(), 'These are the toolbar actions');
assert.dom('.toolbar-actions').exists();
2019-02-14 16:04:46 +00:00
});
});