Merge pull request #1500 from velesin/qunit_helpers_self

refactors asyncTestDiscourse to bind context as self
This commit is contained in:
Robin Ward 2013-10-08 07:31:30 -07:00
commit b12fcec2db

View File

@ -25,12 +25,10 @@ function controllerFor(controller, model) {
}
function asyncTestDiscourse(text, func) {
asyncTest(text, function () {
var qunitContext = this;
var self = this;
Ember.run(function () {
func.call(qunitContext);
func.call(self);
});
});
}