2016-04-06 18:26:58 +03:00
|
|
|
/* jshint expr:true */
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import {
|
|
|
|
describeComponent,
|
|
|
|
it
|
|
|
|
} from 'ember-mocha';
|
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
2016-06-30 13:21:47 +03:00
|
|
|
import run from 'ember-runloop';
|
|
|
|
import RSVP from 'rsvp';
|
2016-04-06 18:26:58 +03:00
|
|
|
import sinon from 'sinon';
|
|
|
|
|
|
|
|
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;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|