Ghost/ghost/admin/tests/integration/components/koenig-slash-menu-test.js
Kevin Ansfield 6d4d6cbc51 Koenig - HTML card template
refs https://github.com/TryGhost/Ghost/issues/9311
- add a basic HTML card that renders a CodeMirror editor
- adjust styles so that CodeMirror styles for the markdown editor don't affect CodeMirror instances inside Koenig
2018-02-03 19:20:50 +01:00

25 lines
779 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-slash-menu', function () {
setupComponentTest('koenig-slash-menu', {
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-slash-menu}}
// template content
// {{/koenig-slash-menu}}
// `);
this.render(hbs`{{koenig-slash-menu}}`);
expect(this.$()).to.have.length(1);
});
});