Ghost/ghost/admin/tests/integration/components/koenig-card-image-test.js
Kevin Ansfield d25fb1597e Koenig - Display-only image card with markdown text expansion
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
2018-01-30 20:46:03 +00:00

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);
});
});