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');
|
2019-05-09 23:48:47 +00:00
|
|
|
assert.dom('.toolbar-actions').exists();
|
2019-02-14 16:04:46 +00:00
|
|
|
});
|
|
|
|
});
|