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`
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import Service from '@ember/service';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {A as emberA} from '@ember/array';
|
|
import {expect} from 'chai';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
let notificationsStub = Service.extend({
|
|
notifications: emberA()
|
|
});
|
|
|
|
describe('Integration: Component: gh-notifications', function () {
|
|
setupComponentTest('gh-notifications', {
|
|
integration: true
|
|
});
|
|
|
|
beforeEach(function () {
|
|
this.register('service:notifications', notificationsStub);
|
|
this.inject.service('notifications', {as: 'notifications'});
|
|
|
|
this.set('notifications.notifications', [
|
|
{message: 'First', type: 'error'},
|
|
{message: 'Second', type: 'warn'}
|
|
]);
|
|
});
|
|
|
|
it('renders', function () {
|
|
this.render(hbs`{{gh-notifications}}`);
|
|
expect(this.$('.gh-notifications').length).to.equal(1);
|
|
|
|
expect(this.$('.gh-notifications').children().length).to.equal(2);
|
|
|
|
this.set('notifications.notifications', emberA());
|
|
expect(this.$('.gh-notifications').children().length).to.equal(0);
|
|
});
|
|
});
|