2019-08-31 20:51:14 -07:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
|
|
import { render, find } from '@ember/test-helpers';
|
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
|
2020-08-26 15:44:50 -07:00
|
|
|
module('Integration | Component | entity-page/entity-header/content-row', function(hooks): void {
|
2019-08-31 20:51:14 -07:00
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
2020-08-26 15:44:50 -07:00
|
|
|
test('it renders', async function(assert): Promise<void> {
|
|
|
|
await render(hbs`{{entity-page/entity-header/content-row}}`);
|
2019-08-31 20:51:14 -07:00
|
|
|
|
|
|
|
assert.ok(find('.wherehows-entity-header-content-row'), 'it renders the element with the expected class name');
|
|
|
|
});
|
|
|
|
});
|