Files
discourse/test/javascripts/components/ace-editor-test.js.es6
T

18 lines
452 B
JavaScript
Raw Normal View History

import componentTest from 'helpers/component-test';
2015-05-13 16:24:49 -04:00
moduleForComponent('ace-editor', {integration: true});
componentTest('css editor', {
template: '{{ace-editor mode="css"}}',
test(assert) {
2015-05-13 16:24:49 -04:00
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
}
2015-05-13 16:24:49 -04:00
});
componentTest('html editor', {
template: '{{ace-editor mode="html"}}',
test(assert) {
2015-05-13 16:24:49 -04:00
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
}
});