2016-04-06 18:26:58 +03:00
|
|
|
/* jshint expr:true */
|
2017-05-29 21:50:03 +03:00
|
|
|
import RSVP from 'rsvp';
|
2016-04-06 18:26:58 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import sinon from 'sinon';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {run} from '@ember/runloop';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {setupComponentTest} from 'ember-mocha';
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2017-09-11 10:41:17 +03:00
|
|
|
describe('Integration: Component: modal-transfer-owner', function() {
|
2016-11-24 01:50:57 +03:00
|
|
|
setupComponentTest('transfer-owner', {
|
2016-04-06 18:26:58 +03:00
|
|
|
integration: true
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
it('triggers confirm action', function() {
|
|
|
|
let confirm = sinon.stub();
|
|
|
|
let closeModal = sinon.spy();
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
confirm.returns(RSVP.resolve({}));
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
this.on('confirm', confirm);
|
|
|
|
this.on('closeModal', closeModal);
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2017-09-11 10:41:17 +03:00
|
|
|
this.render(hbs`{{modal-transfer-owner confirm=(action 'confirm') closeModal=(action 'closeModal')}}`);
|
2016-04-06 18:26:58 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
run(() => {
|
2017-02-16 22:50:05 +03:00
|
|
|
this.$('.gh-btn.gh-btn-red').click();
|
2016-04-06 18:26:58 +03:00
|
|
|
});
|
2016-11-24 01:50:57 +03:00
|
|
|
|
|
|
|
expect(confirm.calledOnce, 'confirm called').to.be.true;
|
|
|
|
expect(closeModal.calledOnce, 'closeModal called').to.be.true;
|
|
|
|
});
|
|
|
|
});
|