ea9c8c03fe
refs https://github.com/TryGhost/Ghost/pull/15550 Pulled out of the rolled up node+ember-js+ember-template rollup linter update PR as it required fairly extensive changes. - bumped package - renamed `no-down-event-binding` to `no-pointer-down-event-binding` - disabled `no-pointer-down-event-binding` rule - disabled `no-triple-curlies` rule - ran `yarn lint:hbs --fix` - updated integration tests to match Octane syntax - fixed various one-off errors - updated .lint-todo
56 lines
1.8 KiB
JavaScript
56 lines
1.8 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 {find, findAll, render, settled} from '@ember/test-helpers';
|
|
import {setupRenderingTest} from 'ember-mocha';
|
|
|
|
let notificationsStub = Service.extend({
|
|
alerts: emberA()
|
|
});
|
|
|
|
describe('Integration: Component: gh-alerts', function () {
|
|
setupRenderingTest();
|
|
|
|
beforeEach(function () {
|
|
this.owner.register('service:notifications', notificationsStub);
|
|
let notifications = this.owner.lookup('service:notifications');
|
|
|
|
notifications.set('alerts', [
|
|
{message: 'First', type: 'error'},
|
|
{message: 'Second', type: 'warn'}
|
|
]);
|
|
});
|
|
|
|
it('renders', async function () {
|
|
let notifications = this.owner.lookup('service:notifications');
|
|
|
|
await render(hbs`<GhAlerts />`);
|
|
expect(findAll('.gh-alerts').length).to.equal(1);
|
|
expect(find('.gh-alerts').children.length).to.equal(2);
|
|
|
|
notifications.set('alerts', emberA());
|
|
await settled();
|
|
expect(find('.gh-alerts').children.length).to.equal(0);
|
|
});
|
|
|
|
it('triggers "notify" action when message count changes', async function () {
|
|
let notifications = this.owner.lookup('service:notifications');
|
|
let expectedCount = 0;
|
|
|
|
// test double for notify action
|
|
this.set('notify', count => expect(count).to.equal(expectedCount));
|
|
|
|
await render(hbs`<GhAlerts @notify={{this.notify}} />`);
|
|
|
|
expectedCount = 3;
|
|
notifications.alerts.pushObject({message: 'Third', type: 'success'});
|
|
await settled();
|
|
|
|
expectedCount = 0;
|
|
notifications.set('alerts', emberA());
|
|
await settled();
|
|
});
|
|
});
|