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,7 +1,7 @@
import Invite from 'discourse/models/invite';
module("model:invite");
QUnit.module("model:invite");
test("create", function() {
ok(Invite.create(), "it can be created without arguments");
});
QUnit.test("create", assert => {
assert.ok(Invite.create(), "it can be created without arguments");
});