d25fb1597e
refs https://github.com/TryGhost/Ghost/issues/9311 - adds the `koenig-card-image` card that renders an `<img>` element - adds text expansion to convert markdown images into the new image card
25 lines
774 B
JavaScript
25 lines
774 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: koenig-card-image', function () {
|
|
setupComponentTest('koenig-card-image', {
|
|
integration: true
|
|
});
|
|
|
|
it('renders', function () {
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
// Handle any actions with this.on('myAction', function(val) { ... });
|
|
// Template block usage:
|
|
// this.render(hbs`
|
|
// {{#koenig-card-image}}
|
|
// template content
|
|
// {{/koenig-card-image}}
|
|
// `);
|
|
|
|
this.render(hbs`{{koenig-card-image}}`);
|
|
expect(this.$()).to.have.length(1);
|
|
});
|
|
});
|