open-vault/ui/tests/integration/components/empty-state-test.js
2018-11-15 16:47:41 -06:00

27 lines
779 B
JavaScript

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 | empty-state', function(hooks) {
setupRenderingTest(hooks);
test('it renders', async function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.set('myAction', function(val) { ... });
await render(hbs`{{empty-state}}`);
assert.equal(this.element.textContent.trim(), '');
// Template block usage:
await render(hbs`
{{#empty-state}}
template block text
{{/empty-state}}
`);
assert.equal(this.element.textContent.trim(), 'template block text');
});
});