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

@ -1,8 +1,8 @@
import Theme from 'admin/models/theme';
module("model:theme");
QUnit.module("model:theme");
test('can add an upload correctly', function(assert) {
QUnit.test('can add an upload correctly', function(assert) {
let theme = Theme.create();
assert.equal(theme.get("uploads.length"), 0, "uploads should be an empty array");
@ -14,4 +14,4 @@ test('can add an upload correctly', function(assert) {
assert.equal(fields[0].type_id, 2, 'expecting type id to be set');
assert.equal(theme.get("uploads.length"), 1, "expecting an upload");
});
});