a85f5fae35
no issue - fix lint errors in lib/gh-koenig - fix ghost:base eslint errors - update ember plugin refs, remove ember-suave plugin refs - remove old jshint refs - add `lint:js` script - switch to `eslint-plugin-ghost` extending `plugin:ghost/ember`
21 lines
705 B
JavaScript
21 lines
705 B
JavaScript
import Table from 'ember-light-table';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: gh-subscribers-table', function () {
|
|
setupComponentTest('gh-subscribers-table', {
|
|
integration: true
|
|
});
|
|
|
|
it('renders', function () {
|
|
this.set('table', new Table([], []));
|
|
this.set('sortByColumn', function () {});
|
|
this.set('delete', function () {});
|
|
|
|
this.render(hbs`{{gh-subscribers-table table=table sortByColumn=(action sortByColumn) delete=(action delete)}}`);
|
|
expect(this.$()).to.have.length(1);
|
|
});
|
|
});
|