0c136a5a23
no issue - `this.attrs` is a glimmer-component thing (which doesn't exist in Ghost yet), to avoid confusion we should avoid using it - https://locks.svbtle.com/to-attrs-or-not-to-attrs - https://github.com/cibernox/ember-power-select/issues/233#issuecomment-170352572
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;
|
|
});
|
|
}
|
|
);
|