mirror of https://github.com/hashicorp/consul
ui: Move identity components (#9298)
parent
70666c22bb
commit
afe0f26143
@ -1,5 +0,0 @@
|
||||
import Component from '@ember/component';
|
||||
|
||||
export default Component.extend({
|
||||
tagName: '',
|
||||
});
|
@ -1,5 +0,0 @@
|
||||
import Component from '@ember/component';
|
||||
|
||||
export default Component.extend({
|
||||
tagName: '',
|
||||
});
|
@ -1,24 +0,0 @@
|
||||
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 | service identity', function(hooks) {
|
||||
setupRenderingTest(hooks);
|
||||
|
||||
test('it renders', async function(assert) {
|
||||
// Set any properties with this.set('myProperty', 'value');
|
||||
// Handle any actions with this.on('myAction', function(val) { ... });
|
||||
|
||||
await render(hbs`{{service-identity}}`);
|
||||
|
||||
assert.ok(this.element.textContent.trim().indexOf('service_prefix') !== -1);
|
||||
|
||||
// Template block usage:
|
||||
await render(hbs`
|
||||
{{#service-identity}}{{/service-identity}}
|
||||
`);
|
||||
|
||||
assert.ok(this.element.textContent.trim().indexOf('service_prefix') !== -1);
|
||||
});
|
||||
});
|
Loading…
Reference in new issue