34 lines
702 B
JavaScript
34 lines
702 B
JavaScript
import { moduleForComponent, skip } from 'ember-qunit';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
moduleForComponent('hashicorp-consul', 'Integration | Component | hashicorp consul', {
|
|
integration: true,
|
|
});
|
|
|
|
skip('it renders', function(assert) {
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
// Handle any actions with this.on('myAction', function(val) { ... });
|
|
|
|
this.render(hbs`{{hashicorp-consul}}`);
|
|
|
|
assert.equal(
|
|
this.$()
|
|
.text()
|
|
.trim(),
|
|
''
|
|
);
|
|
|
|
// Template block usage:
|
|
this.render(hbs`
|
|
{{#hashicorp-consul}}
|
|
{{/hashicorp-consul}}
|
|
`);
|
|
|
|
assert.equal(
|
|
this.$()
|
|
.text()
|
|
.trim(),
|
|
'template block text'
|
|
);
|
|
});
|