2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/* jshint expr:true */
|
|
import { expect } from 'chai';
|
|
import {
|
|
describeComponent,
|
|
it
|
|
} from 'ember-mocha';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import Ember from 'ember';
|
|
|
|
const {Service, run} = Ember;
|
|
const emberA = Ember.A;
|
|
|
|
let notificationsStub = Service.extend({
|
|
notifications: emberA()
|
|
});
|
|
|
|
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', emberA());
|
|
expect(this.$('.gh-notifications').children().length).to.equal(0);
|
|
});
|
|
}
|
|
);
|