d509588cd2
Ember update - update ember-cli, ember-data, and ember to 3.4 series
23 lines
675 B
JavaScript
23 lines
675 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render, find } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
module('Integration | Component | edition badge', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders', async function(assert) {
|
|
await render(hbs`
|
|
{{edition-badge edition="Custom"}}
|
|
`);
|
|
|
|
assert.equal(find('.edition-badge').textContent.trim(), 'Custom', 'contains edition');
|
|
|
|
await render(hbs`
|
|
{{edition-badge edition="Enterprise"}}
|
|
`);
|
|
|
|
assert.equal(find('.edition-badge').textContent.trim(), 'Enterprise', 'renders edition');
|
|
});
|
|
});
|