open-consul/ui-v2/tests/integration/components/action-group-test.js
John Cowen accdefd18e
UI: Begin unskipping some more trivial tests (#4574)
WIP Unskip some lower level trivial tests.

This is the beginning of work to unskip some of the more trivial tests that I'd skipped a while back (if the thing they are testing broke, they would have failed higher up in other acceptance tests).

I'd rather keep the tests, as they do test things in a more isolated manner, and the plan was to always come back and work to unskip them time allowing.

I didn't get to far into this work in progress here, but I'd rather merge what I've done all the same and come back at a later date and continue.
2018-08-29 09:59:02 +01:00

44 lines
889 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('action-group', 'Integration | Component | action group', {
integration: true,
});
test("it doesn't render anything when used inline", function(assert) {
this.render(hbs`{{action-group}}`);
assert.equal(
this.$()
.text()
.trim(),
''
);
});
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`{{action-group}}`);
// assert.equal(
// this.$()
// .text()
// .trim(),
// ''
// );
// Template block usage:
this.render(hbs`
{{#action-group}}{{/action-group}}
`);
assert.notEqual(
this.$()
.text()
.trim()
.indexOf('Open'),
-1
);
});