2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 09:32:02 +00:00
iconify/packages/ember-demo/tests/integration/components/icon-demo-test.js
2021-07-20 16:50:05 +03:00

27 lines
735 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
module('Integration | Component | icon-demo', 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`<IconDemo />`);
assert.dom(this.element).hasText('');
// Template block usage:
await render(hbs`
<IconDemo>
template block text
</IconDemo>
`);
assert.dom(this.element).hasText('template block text');
});
});