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`
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
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: gh-image-uploader-with-preview', function () {
|
|
setupComponentTest('gh-image-uploader-with-preview', {
|
|
integration: true
|
|
});
|
|
|
|
it('renders image if provided', function () {
|
|
this.set('image', 'http://example.com/test.png');
|
|
|
|
this.render(hbs`{{gh-image-uploader-with-preview image=image}}`);
|
|
|
|
expect(this.$('.gh-image-uploader.-with-image').length).to.equal(1);
|
|
expect(this.$('img').attr('src')).to.equal('http://example.com/test.png');
|
|
});
|
|
|
|
it('renders upload form when no image provided', function () {
|
|
this.render(hbs`{{gh-image-uploader-with-preview image=image}}`);
|
|
|
|
expect(this.$('input[type="file"]').length).to.equal(1);
|
|
});
|
|
|
|
it('triggers remove action when delete icon is clicked', function () {
|
|
let remove = sinon.spy();
|
|
this.set('remove', remove);
|
|
this.set('image', 'http://example.com/test.png');
|
|
|
|
this.render(hbs`{{gh-image-uploader-with-preview image=image remove=(action remove)}}`);
|
|
run(() => {
|
|
this.$('.image-cancel').click();
|
|
});
|
|
|
|
expect(remove.calledOnce).to.be.true;
|
|
});
|
|
});
|