Upgrade ember-qunit

This commit is contained in:
Robin Ward
2016-11-08 14:29:50 -05:00
parent 151597bf0f
commit 6a1c05a268
9 changed files with 341 additions and 75 deletions

View File

@ -5,6 +5,7 @@ moduleForComponent('ace-editor', {integration: true});
componentTest('css editor', {
template: '{{ace-editor mode="css"}}',
test(assert) {
expect(1);
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
}
});
@ -12,6 +13,7 @@ componentTest('css editor', {
componentTest('html editor', {
template: '{{ace-editor mode="html" content="<b>wat</b>"}}',
test(assert) {
expect(1);
assert.ok(this.$('.ace_editor').length, 'it renders the ace editor');
}
});