Ghost/ghost/admin/tests/integration/components/gh-notifications-test.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

/* jshint expr:true */
import { expect } from 'chai';
import {
describeComponent,
it
} from 'ember-mocha';
import hbs from 'htmlbars-inline-precompile';
import Ember from 'ember';
const {run} = Ember,
notificationsStub = Ember.Service.extend({
notifications: Ember.A()
});
describeComponent(
'gh-notifications',
'Integration: Component: gh-notifications',
{
integration: true
},
function () {
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', Ember.A());
expect(this.$('.gh-notifications').children().length).to.equal(0);
});
}
);