mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
34 lines
1012 B
JavaScript
34 lines
1012 B
JavaScript
/* jshint expr:true */
|
|
import RSVP from 'rsvp';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import sinon from 'sinon';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {run} from '@ember/runloop';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: modals/transfer-owner', function() {
|
|
setupComponentTest('transfer-owner', {
|
|
integration: true
|
|
});
|
|
|
|
it('triggers confirm action', function() {
|
|
let confirm = sinon.stub();
|
|
let closeModal = sinon.spy();
|
|
|
|
confirm.returns(RSVP.resolve({}));
|
|
|
|
this.on('confirm', confirm);
|
|
this.on('closeModal', closeModal);
|
|
|
|
this.render(hbs`{{modals/transfer-owner confirm=(action 'confirm') closeModal=(action 'closeModal')}}`);
|
|
|
|
run(() => {
|
|
this.$('.gh-btn.gh-btn-red').click();
|
|
});
|
|
|
|
expect(confirm.calledOnce, 'confirm called').to.be.true;
|
|
expect(closeModal.calledOnce, 'closeModal called').to.be.true;
|
|
});
|
|
});
|