Upgrade QUnit to latest version

This commit is contained in:
Robin Ward
2017-06-14 13:57:58 -04:00
parent 8ae445766f
commit cc525b1a8d
145 changed files with 7569 additions and 6763 deletions

View File

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