mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-04 15:28:07 +00:00
22 lines
448 B
JavaScript
22 lines
448 B
JavaScript
![]() |
import { moduleForComponent, test } from 'ember-qunit';
|
||
|
import hbs from 'htmlbars-inline-precompile';
|
||
|
|
||
|
moduleForComponent(
|
||
|
'datasets/containers/dataset-acl-access',
|
||
|
'Integration | Component | datasets/containers/dataset acl access',
|
||
|
{
|
||
|
integration: true
|
||
|
}
|
||
|
);
|
||
|
|
||
|
skip('it renders', function(assert) {
|
||
|
this.render(hbs`{{datasets/containers/dataset-acl-access}}`);
|
||
|
|
||
|
assert.equal(
|
||
|
this.$()
|
||
|
.text()
|
||
|
.trim(),
|
||
|
''
|
||
|
);
|
||
|
});
|