1
0
Fork 0
ember-file-download-list-ex.../tests/integration/components/file-table-test.js
2018-12-16 13:16:19 -06:00

19 lines
No EOL
864 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, find } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | file-table', function(hooks) {
setupRenderingTest(hooks);
test('it renders expected elements', async function(assert) {
await render(hbs`{{file-table}}`);
assert.ok(this.element, 'Component itself');
assert.ok(find('[data-test-id=file-table-action-bar]'), 'Action bar');
assert.ok(find('[data-test-action=file-table-select-all]'), 'Select all');
assert.ok(find('[data-test-action=file-table-download-selected]'), 'Download selected');
assert.ok(find('[data-test-id=file-table-header]'), 'Table header');
assert.notOk(find('[data-test-id=file-table-item]'), 'Should have no table rows without data');
});
});