open-consul/ui-v2/tests/integration/components/copy-button-feedback-test.js
John Cowen 52a62f2b8d UI: New ACLs (#4789)
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

33 lines
739 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('copy-button-feedback', 'Integration | Component | copy button feedback', {
integration: true,
});
test('it renders', function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });
this.render(hbs`{{copy-button-feedback value='Click Me'}}`);
assert.equal(
this.$()
.text()
.trim(),
'Click Me'
);
// Template block usage:
this.render(hbs`
{{#copy-button-feedback}}Click Me{{/copy-button-feedback}}
`);
assert.equal(
this.$()
.text()
.trim(),
'Click Me'
);
});