a85f5fae35
no issue - fix lint errors in lib/gh-koenig - fix ghost:base eslint errors - update ember plugin refs, remove ember-suave plugin refs - remove old jshint refs - add `lint:js` script - switch to `eslint-plugin-ghost` extending `plugin:ghost/ember`
33 lines
989 B
JavaScript
33 lines
989 B
JavaScript
import RSVP from 'rsvp';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import sinon from 'sinon';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {run} from '@ember/runloop';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: modal-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`{{modal-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;
|
|
});
|
|
});
|