18 lines
527 B
JavaScript
18 lines
527 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
module('Integration | Helper | policy/datacenters', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it renders', async function(assert) {
|
|
this.set('inputValue', {});
|
|
|
|
await render(hbs`{{policy/datacenters inputValue}}`);
|
|
|
|
assert.equal(this.element.textContent.trim(), 'All');
|
|
});
|
|
});
|