mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
8077a41f42
* Create service/exist helper to be used in ListCollection list items * Make only existing services in Upstreams linkabled with hover effect
18 lines
534 B
JavaScript
18 lines
534 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
module('Integration | Helper | service/exists', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it renders', async function(assert) {
|
|
this.set('inputValue', { InstanceCount: 3 });
|
|
|
|
await render(hbs`{{service/exists inputValue}}`);
|
|
|
|
assert.equal(this.element.textContent.trim(), 'true');
|
|
});
|
|
});
|