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
28 lines
832 B
JavaScript
28 lines
832 B
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Helper: clean-basic-html', function () {
|
|
setupComponentTest('clean-basic-html', {
|
|
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`
|
|
// {{#clean-basic-html}}
|
|
// template content
|
|
// {{/clean-basic-html}}
|
|
// `);
|
|
this.set('inputValue', '1234');
|
|
|
|
this.render(hbs`{{clean-basic-html inputValue}}`);
|
|
|
|
expect(this.$().text().trim()).to.equal('1234');
|
|
});
|
|
});
|
|
|