2015-07-14 13:56:59 -04:00
|
|
|
import componentTest from 'helpers/component-test';
|
|
|
|
|
2015-05-13 16:24:49 -04:00
|
|
|
moduleForComponent('ace-editor', {integration: true});
|
2015-05-13 14:12:54 -04:00
|
|
|
|
2015-07-14 13:56:59 -04:00
|
|
|
componentTest('css editor', {
|
|
|
|
template: '{{ace-editor mode="css"}}',
|
|
|
|
test(assert) {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.expect(1);
|
2015-05-13 16:24:49 -04:00
|
|
|
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
|
2015-07-14 13:56:59 -04:00
|
|
|
}
|
2015-05-13 16:24:49 -04:00
|
|
|
});
|
|
|
|
|
2015-07-14 13:56:59 -04:00
|
|
|
componentTest('html editor', {
|
2016-07-05 11:03:10 -04:00
|
|
|
template: '{{ace-editor mode="html" content="<b>wat</b>"}}',
|
2015-07-14 13:56:59 -04:00
|
|
|
test(assert) {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.expect(1);
|
2015-05-13 16:24:49 -04:00
|
|
|
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
|
2015-07-14 13:56:59 -04:00
|
|
|
}
|
2015-05-13 14:12:54 -04:00
|
|
|
});
|