mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
40 lines
1.0 KiB
JavaScript
40 lines
1.0 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';
|
||
|
import sinon from 'sinon';
|
||
|
|
||
|
const {RSVP, run} = Ember;
|
||
|
|
||
|
describeComponent(
|
||
|
'transfer-owner',
|
||
|
'Integration: Component: modals/transfer-owner',
|
||
|
{
|
||
|
integration: true
|
||
|
},
|
||
|
function() {
|
||
|
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.$('.btn.btn-red').click();
|
||
|
});
|
||
|
|
||
|
expect(confirm.calledOnce, 'confirm called').to.be.true;
|
||
|
expect(closeModal.calledOnce, 'closeModal called').to.be.true;
|
||
|
});
|
||
|
}
|
||
|
);
|