open-vault/ui/tests/integration/components/toolbar-download-button-test.js

18 lines
603 B
JavaScript
Raw Normal View History

2019-02-14 16:04:46 +00:00
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import { isPresent } from 'ember-cli-page-object';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | toolbar-download-button', function(hooks) {
setupRenderingTest(hooks);
test('it renders', async function(assert) {
await render(hbs`<ToolbarDownloadButton @actionText="Link" />`);
assert.equal(this.element.textContent.trim(), 'Link');
2019-04-29 15:19:03 +00:00
assert.ok(isPresent('.toolbar-link'));
2019-02-14 16:04:46 +00:00
assert.ok(isPresent('.icon'));
});
});