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

@ -11,8 +11,11 @@ export default function() {
register: {
lookup(type) {
if (type === "adapter:rest") {
this._restAdapter = this._restAdapter || RestAdapter.create({ container: this });
return (this._restAdapter);
if (!this._restAdapter) {
this._restAdapter = RestAdapter.create({ owner: this });
// this._restAdapter.container = this;
}
return this._restAdapter;
}
if (type === "key-value-store:main") {
this._kvs = this._kvs || new KeyValueStore();
@ -34,5 +37,4 @@ export default function() {
},
}
});
}
}