mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
db74744d2b
* Updates styling on content management screen, replaces button styles, tweaks application frame style
34 lines
1009 B
JavaScript
34 lines
1009 B
JavaScript
/* jshint expr:true */
|
|
import {expect} from 'chai';
|
|
import {describe, it} from 'mocha';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import run from 'ember-runloop';
|
|
import RSVP from 'rsvp';
|
|
import sinon from 'sinon';
|
|
|
|
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;
|
|
});
|
|
});
|