mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
83924194f5
refs https://github.com/TryGhost/Ghost/issues/9724 - added `{{koenig-basic-html-input}}` component - uses a stripped down version of Koenig - supports all inline formatting that Koenig supports - supports inline text expansions - supports inline key commands - limited to a single paragraph - serialises and deserialises from HTML rather than mobiledoc - updated `{{koenig-caption-input}}` to use `{{koenig-basic-html-input}}` - updated image and embed cards to calculate word counts correctly for html captions - bumped Spirit dependency to fix styling of toolbars within the editor canvas - fixed positioning in toolbar components to account for `parentElement` not necessarily being the closest element to position against
25 lines
809 B
JavaScript
25 lines
809 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-basic-html-input', function () {
|
|
setupComponentTest('koenig-basic-html-input', {
|
|
integration: true
|
|
});
|
|
|
|
it.skip('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-basic-html-input}}
|
|
// template content
|
|
// {{/koenig-basic-html-input}}
|
|
// `);
|
|
|
|
this.render(hbs`{{koenig-basic-html-input}}`);
|
|
expect(this.$()).to.have.length(1);
|
|
});
|
|
});
|