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

38 lines
1.2 KiB
JavaScript
Raw Normal View History

/* jshint expr:true */
import {expect} from 'chai';
2016-11-24 01:50:57 +03:00
import {describe, it} from 'mocha';
import {setupComponentTest} from 'ember-mocha';
import hbs from 'htmlbars-inline-precompile';
import Service from 'ember-service';
import {A as emberA} from 'ember-array/utils';
let notificationsStub = Service.extend({
notifications: emberA()
});
2016-11-24 01:50:57 +03:00
describe('Integration: Component: gh-notifications', function () {
setupComponentTest('gh-notifications', {
integration: true
2016-11-24 01:50:57 +03:00
});
2016-11-24 01:50:57 +03:00
beforeEach(function () {
this.register('service:notifications', notificationsStub);
this.inject.service('notifications', {as: 'notifications'});
2016-11-24 01:50:57 +03:00
this.set('notifications.notifications', [
{message: 'First', type: 'error'},
{message: 'Second', type: 'warn'}
]);
});
2016-11-24 01:50:57 +03:00
it('renders', function () {
this.render(hbs`{{gh-notifications}}`);
expect(this.$('.gh-notifications').length).to.equal(1);
2016-11-24 01:50:57 +03:00
expect(this.$('.gh-notifications').children().length).to.equal(2);
this.set('notifications.notifications', emberA());
expect(this.$('.gh-notifications').children().length).to.equal(0);
});
});